php-src/ext/standard/tests/array/bug43505.phpt
Steph Fox 833f4150a1 - killed off UEXPECT
- could someone please fix var_export2.phpt? NUL is corrupted, can't fix here
2008-05-26 23:36:10 +00:00

37 lines
483 B
PHP

--TEST--
Bug #43505 (Assign by reference bug)
--INI--
error_reporting=0
--SKIPIF--
<?php if (!extension_loaded('spl')) die("skip SPL is not available"); ?>
--FILE--
<?php
class Test implements Countable {
public function count() {
return $some;
}
}
$obj = new Test();
$a = array();
$b =& $a['test'];
var_dump($a);
$t = count($obj);
$a = array();
$b =& $a['test'];
var_dump($a);
?>
--EXPECT--
array(1) {
[u"test"]=>
&NULL
}
array(1) {
[u"test"]=>
&NULL
}