summaryrefslogtreecommitdiff
path: root/Examples/FunctionReturnValue/functionreturnvalue.php
blob: 1626e19273dc5f1952f44d230ed7eb8e3e3de42e (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";