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
)
________________________________________