summaryrefslogtreecommitdiff
path: root/Examples/FunctionReturnValue/functionreturnvalue.php
blob: ba8f52ba861dcc31ee66b3d022b32e25f4e2cd3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?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 "Function which returns a value; my_return_value_function()\n"
echo my_return_value_function() . "\n";