]> granicus.if.org Git - php/commitdiff
This commit was manufactured by cvs2svn to create branch 'PHP_4_3'.
authorSVN Migration <svn@php.net>
Fri, 3 Oct 2003 05:47:08 +0000 (05:47 +0000)
committerSVN Migration <svn@php.net>
Fri, 3 Oct 2003 05:47:08 +0000 (05:47 +0000)
ext/standard/tests/array/bug24766.phpt [new file with mode: 0644]

diff --git a/ext/standard/tests/array/bug24766.phpt b/ext/standard/tests/array/bug24766.phpt
new file mode 100644 (file)
index 0000000..89434c1
--- /dev/null
@@ -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