Re: Infinite PHP function stack crashes Apache in Vista - Fixable?
"PHPBABY3" <shymathguy@gmail.com> wrote in message
news:8879c1fe-4041-40af-93ff-56b2b9036747@u10g2000prn.googlegroups.com...
>
> The following PHP code causes Apache to crash and PHP to suspend:
>
> a() ; function a(){return a();}
>
> This is running EasyPHP under Vista.
>
> How to fix?
>
Assuming your code snippet is complete, rather than a cut down (missing any
relevant detail)...
put two slashes at the start of the line -
//a() ; function a(){return a();}
or delete the line completely.
|