Lines Matching refs:function
2 General function test
6 echo "Before function declaration...\n";
8 function print_something_multiple_times($something,$times)
10 echo "----\nIn function, printing the string \"$something\" $times times\n";
14 echo "Done with function...\n-----\n";
17 function some_other_function()
19 echo "This is some other function, to ensure more than just one function works fine...\n";
23 echo "After function declaration...\n";
25 echo "Calling function for the first time...\n";
27 echo "Returned from function call...\n";
29 echo "Calling the function for the second time...\n";
31 echo "Returned from function call...\n";
37 Before function declaration...
38 After function declaration...
39 Calling function for the first time...
41 In function, printing the string "This works!" 10 times
52 Done with function...
54 Returned from function call...
55 Calling the function for the second time...
57 In function, printing the string "This like, really works and stuff..." 3 times
61 Done with function...
63 Returned from function call...
64 This is some other function, to ensure more than just one function works fine...