私はこの取得:Fatal error: Out of memory
:2番目のforループ引数がnumberと等しくないのはなぜですか?
<?php
// Create an array and push 5 elements on to it, then
// print the number of elements in your array to the screen
$numbers = array(1,2,3);
for($i=4;$i=8;$i++){
array_push($numbers,$i);
}
print count($numbers);
?>
をしかし、私は$i<9
に$i=8
を変更した場合、それは動作します。
何がありますか?
あなたは代入 '='を使用しています。あなたがしたいのは比較 '=='です。 –