Arquivos
hhvm/hphp/test/quick/serialization_limit.php
T
ptarjan 503f75d08b Rename test directories
These names don't make sense now that we run both suites the same
way.
2013-04-17 09:06:51 -07:00

19 linhas
208 B
PHP

<?php
function foo($a) {
$v = array();
for ($i = 0; $i < 1024; $i++) {
$v[] = $a;
}
return $v;
}
function test() {
$a = foo(1);
$a = foo($a);
$a = foo($a);
print_r($a, true);
}
test();