diff options
author | foobar <sniper@php.net> | 2003-10-03 05:47:07 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2003-10-03 05:47:07 +0000 |
commit | f3f9f8db7fa2753c1cf6ab7dc0e8065fdb6c8759 (patch) | |
tree | ef9f354ab313e2d4bbe5c059a0de7da4f44e946d /ext/standard/tests/array/bug24766.phpt | |
parent | db50cd251ed827de60bdc156a08fd7c0f744e2fd (diff) | |
download | php-git-f3f9f8db7fa2753c1cf6ab7dc0e8065fdb6c8759.tar.gz |
- Added test for bug #24766
# This bug is caused by the HANDLE_NUMERIC() change in ZE2 vs ZE1
Diffstat (limited to 'ext/standard/tests/array/bug24766.phpt')
-rw-r--r-- | ext/standard/tests/array/bug24766.phpt | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/ext/standard/tests/array/bug24766.phpt b/ext/standard/tests/array/bug24766.phpt new file mode 100644 index 0000000000..89434c1939 --- /dev/null +++ b/ext/standard/tests/array/bug24766.phpt @@ -0,0 +1,31 @@ +--TEST-- +Bug #24766 (strange result array from unpack) +--FILE-- +<?php + +error_reporting(E_ALL); + +$a=unpack('C2', "\0224V"); +debug_zval_dump($a); +$k=array_keys($a); +debug_zval_dump($k); + +$i=$k[0]; + +echo $a[$i],"\n"; + +?> +--EXPECT-- +array(2) refcount(2){ + [1]=> + long(18) refcount(1) + [2]=> + long(52) refcount(1) +} +array(2) refcount(2){ + [0]=> + long(1) refcount(1) + [1]=> + long(2) refcount(1) +} +18 |