summaryrefslogtreecommitdiff
path: root/Examples/FunctionNoParameters/functionnoparameters.php
blob: 9c62845472a6c77a24158840e66a6e4b9fdfb461 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php
/**
 *  functionnoparameters.php
 *  @author Jasper van Eck<jasper.vaneck@copernica.com>
 * 
 *  An example file to show the working of a function call without parameters.
 */


//Run a function without parameters.  
echo my_no_parameters_function() . "\n";