Catherine's Functions
Demonstrates How Variables May Be Passed To, And Returned From, Functions.
________________________________________This Is Inside Function one()
________________________________________This Is Inside Function two() a = 2
________________________________________Prior To Function three() : a = 3
This Is Inside Function Three() : a = 3
After Going To Function three() : a = 3
________________________________________Before Function four() : a = 4
This Is Inside Function four() : a = 14
After Going To Function four() : a = 4
________________________________________Before Function five() : a = 5
This Is Inside Function five() : a = 15
Returned From Function five() : a = 15
________________________________________Before To Function six() : a = 6
This Is Inside Function six() : a = 16
After Function six() : a = 16
________________________________________Before To Function seven
Array ( )
This Is Inside Function seven()
After Function seven
Array ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 [4] => 5 [5] => 6 [6] => 7 [7] => 8 [8] => 9 )________________________________________
Before To Function eight
Array ( )
This Is Inside Function eight()
After Function eight
Array ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 [4] => 5 [5] => 6 [6] => 7 [7] => 8 [8] => 9 )________________________________________
Before To Function eight
Array ( )
This Is Inside Function eight()
After Function eight
Array ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 [4] => 5 [5] => 6 [6] => 7 [7] => 8 [8] => 9 )________________________________________