From: Marcus Boerger Date: Tue, 3 Aug 2004 16:59:53 +0000 (+0000) Subject: Add new test X-Git-Tag: PRE_ZEND_VM_DISPATCH_PATCH~250 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c4508c377e3173c196cf7b0439eb97ff2a556bf6;p=php Add new test --- diff --git a/Zend/tests/bug29505.phpt b/Zend/tests/bug29505.phpt new file mode 100755 index 0000000000..4d7c053516 --- /dev/null +++ b/Zend/tests/bug29505.phpt @@ -0,0 +1,31 @@ +--TEST-- +Bug #29505 (get_class_vars() severely broken when used with arrays) +--FILE-- +"c", 3=>array()); +} + +var_dump(get_class_vars('Test')); + +?> +===DONE=== +--EXPECT-- +array(2) { + ["empty"]=> + array(0) { + } + ["three"]=> + array(3) { + [0]=> + int(1) + ["b"]=> + string(1) "c" + [3]=> + array(0) { + } + } +} +===DONE===