TypePHP 编译器 https://swoole.com/aot/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

19 lines
234 B

--TEST--
for statement
--FILE--
<?php
function main()
{
$i = 100;
$arr = [];
for($i = 0; $i < 100; $i++) {
$arr[] = $i;
}
var_dump(count($arr));
echo $arr[49];
echo "\n";
}
?>
--EXPECT--
int(100)
49