[snip]

So I tried it out.. at first I created a loop that assigned $x = 1; a whole
bunch of times, but that didnšt crash anything.. .. 7996 

Well to make an already long story short.. it looks like after a couple of
hours bugs.php.net has removed my post.

My question to you is.. is there any reason why they would remove my post?
[/snip]

Because it is not a bug, it is bad code design! 8000+ lines of $x = 1; is just 
downright goofy! Did you happen to try it with 8000+ repeated blocks of any other 
type? My bet is that it would quit then too. 
:)

<?php

$i = 0;

while($i < 12000){
        $x = 1;
        $i++;
}
echo $x . "\n";
?>

No crash.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to