From 2e98f2dd1a7c148aeb07dad774c2a6982fa72552 Mon Sep 17 00:00:00 2001 From: SVN Migration Date: Tue, 3 Aug 2004 16:59:54 +0000 Subject: [PATCH] This commit was manufactured by cvs2svn to create branch 'PHP_5_0'. --- Zend/tests/bug29505.phpt | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100755 Zend/tests/bug29505.phpt 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=== -- 2.50.1