Lines Matching refs:get_defined_vars
2 Testing get_defined_vars() Function
5 /* Prototype: array get_defined_vars(void);
23 var_dump( get_defined_vars() );
30 var_dump( get_defined_vars() );
33 $arr = get_defined_vars();
35 /* Displaying various variable through the array captured by the get_defined_vars function call */
36 echo "\n*** Displaying various variables through the array captured by the get_defined_vars functio…
46 echo "\n*** Checking for output when get_defined_vars called in local function ***\n";
50 echo "\n*** Checking for output when get_defined_vars called in function of a class ***\n";
53 echo "\n*** Checking for output when get_defined_vars called in nested functions ***\n";
56 var_dump( get_defined_vars() );
59 var_dump( get_defined_vars() );
68 *** Displaying various variables through the array captured by the get_defined_vars function call *…
106 *** Checking for output when get_defined_vars called in local function ***
112 *** Checking for output when get_defined_vars called in function of a class ***
118 *** Checking for output when get_defined_vars called in nested functions ***