summaryrefslogtreecommitdiff
path: root/Zend
diff options
context:
space:
mode:
authorRaghubansh Kumar <kraghuba@php.net>2007-06-11 16:04:43 +0000
committerRaghubansh Kumar <kraghuba@php.net>2007-06-11 16:04:43 +0000
commit38c095a44fe6eb4ba65aaa398ffb9e519bb4f7c8 (patch)
treeebf41b23bdd4224b2fcde68727e1074603434d17 /Zend
parent4f33b594ac1726f12238df806e216dfdb69fa990 (diff)
downloadphp-git-38c095a44fe6eb4ba65aaa398ffb9e519bb4f7c8.tar.gz
New testcase for get_defined_vars() function: get_defined_vars.phpt
Diffstat (limited to 'Zend')
-rw-r--r--Zend/tests/get_defined_vars.phpt128
1 files changed, 128 insertions, 0 deletions
diff --git a/Zend/tests/get_defined_vars.phpt b/Zend/tests/get_defined_vars.phpt
new file mode 100644
index 0000000000..81aa97a455
--- /dev/null
+++ b/Zend/tests/get_defined_vars.phpt
@@ -0,0 +1,128 @@
+--TEST--
+Testing get_defined_vars() Function
+--FILE--
+<?php
+/* Prototype: array get_defined_vars(void);
+ * Description: Returns a multidimentional array of all defined variables.
+ */
+
+/* Various variables definitions used for testing of the function */
+
+$number = 22.33; //number
+$string = "sample string"; //string
+$array1 = array(1, 1, 2, 3, 5, 8); //simple array
+$assoc_array = array( 'a'=>97, 'c'=>99, 'A'=>65, 'C'=>67, 1=>"string1" ); //associative array
+$boolean = TRUE; //boolean
+
+/* Checking for Class and Objects */
+class sample {
+var $number = 233;
+var $string = "string2";
+public function func() {
+$local_var = 2;
+var_dump( get_defined_vars() );
+}
+}
+$sample_obj = new sample; //object declaration
+
+function func() {
+$string33 = 22;
+var_dump( get_defined_vars() );
+}
+
+$arr = get_defined_vars();
+
+/* Displaying various variable through the array captured by the get_defined_vars function call */
+echo "\n*** Displaying various variables through the array captured by the get_defined_vars function call ***\n";
+var_dump( $arr["argc"] );
+var_dump( $arr["number"] );
+var_dump( $arr["string"] );
+var_dump( $arr["array1"] );
+var_dump( $arr["assoc_array"] );
+var_dump( $arr["boolean"] );
+var_dump( $arr["sample_obj"] );
+
+
+echo "\n*** Checking for output when get_defined_vars called in local function ***\n";
+func();
+
+
+echo "\n*** Checking for output when get_defined_vars called in function of a class ***\n";
+$sample_obj->func();
+
+echo "\n*** Checking for output when get_defined_vars called in nested functions ***\n";
+function func1(){
+$func1_var = 2;
+var_dump( get_defined_vars() );
+function func2(){
+$func2_var = 3;
+var_dump( get_defined_vars() );
+}
+func2();
+}
+func1();
+
+echo "\nDone";
+?>
+--EXPECTF--
+*** Displaying various variables through the array captured by the get_defined_vars function call ***
+int(1)
+float(22.33)
+string(13) "sample string"
+array(6) {
+ [0]=>
+ int(1)
+ [1]=>
+ int(1)
+ [2]=>
+ int(2)
+ [3]=>
+ int(3)
+ [4]=>
+ int(5)
+ [5]=>
+ int(8)
+}
+array(5) {
+ ["a"]=>
+ int(97)
+ ["c"]=>
+ int(99)
+ ["A"]=>
+ int(65)
+ ["C"]=>
+ int(67)
+ [1]=>
+ string(7) "string1"
+}
+bool(true)
+object(sample)#1 (2) {
+ ["number"]=>
+ int(233)
+ ["string"]=>
+ string(7) "string2"
+}
+
+*** Checking for output when get_defined_vars called in local function ***
+array(1) {
+ ["string33"]=>
+ int(22)
+}
+
+*** Checking for output when get_defined_vars called in function of a class ***
+array(1) {
+ ["local_var"]=>
+ int(2)
+}
+
+*** Checking for output when get_defined_vars called in nested functions ***
+array(1) {
+ ["func1_var"]=>
+ int(2)
+}
+array(1) {
+ ["func2_var"]=>
+ int(3)
+}
+
+Done