summaryrefslogtreecommitdiff
path: root/Examples/FunctionReturnValue/functionreturnvalue.php
blob: 722a4fed8a56a362ab853e6c7901202529f5bbe9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
/*
 *	functionreturnvalue.php
 * 	@Author Jasper van Eck
 * 
 * 	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";