summaryrefslogtreecommitdiff
path: root/Examples/FunctionReturnValue/functionreturnvalue.php
blob: dc3e68ed0eb44da2dc9b9400dbdaac9bbdd48abe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php
/**
 *  functionreturnvalue.php
 *  @author Jasper van Eck<jasper.vaneck@copernica.com>
 * 
 *  An example file to show the working of a function call with a return value.
 */

/**
 *  Run a function which returns a value.
 */
echo my_return_value_function() . "\n";