- Added test for bug #24766

# This bug is caused by the HANDLE_NUMERIC() change in ZE2 vs ZE1
This commit is contained in:
foobar 2003-10-03 05:47:07 +00:00
parent db50cd251e
commit f3f9f8db7f

View File

@ -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