I don't know is it right or not. I have a PHP file with contents like this:
$x = explode("
", $y); // Making $x has length 65000
foreach ($x as $k) {
//Some code here
}
And often my script auto-stopping after ~25000 loops. Why? Is it PHP default configuration?