Arquivos
hhvm/hphp/test/slow/array_object/append.php.expect
T
Paul Tarjan cef8fcc6e3 add ArrayObject
This is a pure PHP implementation of ArrayObject. It does't match the reference semantics of zend's implementation, but it is much easier to build this in pure PHP, so its a good first step. It is better to have it like this, than to not have it at all.
2013-05-24 09:48:22 -07:00

25 linhas
433 B
Plaintext

object(ArrayObject)#1 (3) {
["storage":"ArrayObject":private]=>
array(5) {
[0]=>
string(5) "first"
[1]=>
string(6) "second"
[2]=>
string(5) "third"
[3]=>
string(6) "fourth"
[4]=>
array(2) {
[0]=>
string(4) "five"
[1]=>
string(3) "six"
}
}
["flags":"ArrayObject":private]=>
int(0)
["iteratorClass":"ArrayObject":private]=>
string(13) "ArrayIterator"
}