diff options
Diffstat (limited to 'ext')
-rw-r--r-- | ext/standard/tests/array/count_symbol_table.phpt | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/ext/standard/tests/array/count_symbol_table.phpt b/ext/standard/tests/array/count_symbol_table.phpt new file mode 100644 index 0000000000..b7e0a2e8b1 --- /dev/null +++ b/ext/standard/tests/array/count_symbol_table.phpt @@ -0,0 +1,22 @@ +--TEST-- +Test count() function : count on symbol table +--FILE-- +<?php + +$c1 = 0; +$c2 = 0; +$a = 1; +$b = 1; +$c1 = count($GLOBALS); +unset($a); +unset($GLOBALS["b"]); +$c2 = count($GLOBALS); + +var_dump($c1 - $c2); +$c = 1; +$c1 = count($GLOBALS); +var_dump($c1 - $c2); +?> +--EXPECT-- +int(2) +int(1) |