|
Posted by Adam on 11/24/59 11:28
On Tue, 4 Oct 2005 07:50:59 +0000 (UTC), Andrew @ Rockface wrote:
>chotiwallah wrote:
>You could use an infinite loop and stick the code to be executed inside
>with a sleep at the end.
>
>$x = 5;
>while(1) {
> echo "Hello world";
> sleep($x);
>}
I've been digging around looking for info on precisely this topic.
Not sure whether your code will work (infinitely). It will simply hit
the maximum page execution time set by php.ini on the server - then
throw an ugly error.
You could extend that time with ini_set() - but I'm not sure whether
there's a memory or performance hit on a server processing an infinite
loop. It would also dependon what is actually happeniong iside the
loop.
Adam.
Navigation:
[Reply to this message]
|