503f75d08b
These names don't make sense now that we run both suites the same way.
39 linhas
763 B
PHP
39 linhas
763 B
PHP
<?php
|
|
|
|
class ary implements ArrayAccess {
|
|
public function __construct() {
|
|
echo "Constructing\n";
|
|
}
|
|
public function __destruct() {
|
|
echo "Destructing\n";
|
|
}
|
|
public function offsetExists($i) {
|
|
return true;
|
|
}
|
|
public function offsetGet($i) {
|
|
return $i . $i;
|
|
}
|
|
public function offsetSet($i, $v) {
|
|
}
|
|
public function offsetUnset($i) {
|
|
}
|
|
}
|
|
|
|
function main() {
|
|
$a = array(null, new ary(), array('cat' => 'meow', 'dog' => 'woof'));
|
|
var_dump($a[0]['unused']);
|
|
var_dump($a[1]['tick']);
|
|
var_dump($a[2]['dog']);
|
|
var_dump($a[3]['unused']);
|
|
|
|
apc_store('widget', $a);
|
|
unset($a);
|
|
$a = apc_fetch('widget');
|
|
var_dump($a[0]['unused']);
|
|
var_dump($a[1]['tock']);
|
|
var_dump($a[2]['cat']);
|
|
var_dump($a[3]['unused']);
|
|
}
|
|
|
|
main();
|