24 lines
333 B
PHP
24 lines
333 B
PHP
--TEST--
|
|
Bug #65051: count() off by one inside unset()
|
|
--FILE--
|
|
<?php
|
|
|
|
class Foo {
|
|
public $array;
|
|
|
|
public function __destruct() {
|
|
var_dump(count($this->array[0]));
|
|
var_dump($this->array[0]);
|
|
}
|
|
}
|
|
|
|
$array = [[new Foo]];
|
|
$array[0][0]->array =& $array;
|
|
unset($array[0][0]);
|
|
|
|
?>
|
|
--EXPECT--
|
|
int(0)
|
|
array(0) {
|
|
}
|