unread
Hello,
Can someone apply this little patch to HEAD (Zend/zend_hash.c)?
These two lines have been removed by mistake in the last commit.
simple test (props access or any hash table usage):
<?php
class my {
private $test=0;
public $testp = 1;
private $testarray = array();
}
$a = new my;
var_dump($a);
--Pierre