Re: [PHP] Run the same php function several times in th background

2003-10-15 Thread Manuel Vázquez Acosta
There's a PEAR (o PCLE, can't remeber, search at http://pear.php.net) implementation of threads, though its experimental yet. Manu. Kb [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Dear Mohamed Yes, I am looking for multithreading process , thank you for the suggestion charles

RE: [PHP] Run the same php function several times in th background

2003-10-14 Thread Jay Blanchard
[snip] I would like to intiate the same function many times, running in the background using php, [/snip] for($i = 0; $i 1000; $i++){ foo($blork); // function runs one thousand times } Please RTFM, STFW, and STFA for PHP tutorials. Thank you. -- PHP General Mailing List

Re: [PHP] Run the same php function several times in th background

2003-10-14 Thread Mohamed Lrhazi
You're talking multithreading and/or forking extra processes? check the docs for that... search for fork... Mohamed~ On Tue, 2003-10-14 at 11:05, KB wrote: Hi NG I would like to intiate the same function many times, running in the background using php, Thank you in advance for any

Re: [PHP] Run the same php function several times in th background

2003-10-14 Thread KB
Dear Mohamed Yes, I am looking for multithreading process , thank you for the suggestion charles -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Run the same php function several times in th background

2003-10-14 Thread John Nichel
Jay Blanchard wrote: [snip] I would like to intiate the same function many times, running in the background using php, [/snip] for($i = 0; $i 1000; $i++){ foo($blork); // function runs one thousand times } Please RTFM, STFW, and STFA for PHP tutorials. Thank you. This is not what he

RE: [PHP] Run the same php function several times in th background

2003-10-14 Thread Jay Blanchard
[snip] This is not what he asked. He wants to run the process in the background. PHP's process control functions may do what you need http://us3.php.net/manual/en/ref.pcntl.php [/snip] My badunder the influence of anti-histamines and other cold medicines. -- PHP General Mailing List

Re: [PHP] Run the same php function several times in th background

2003-10-14 Thread John Nichel
Jay Blanchard wrote: [snip] This is not what he asked. He wants to run the process in the background. PHP's process control functions may do what you need http://us3.php.net/manual/en/ref.pcntl.php [/snip] My badunder the influence of anti-histamines and other cold medicines. Well, the