[PHP-DEV] multithreading

2002-05-15 Thread Andrew Milne
I have a PHP script that is run hourly by cron; I would like to make this multithreading rather than configure cron to run the script more than once per hour. Is this possible using PHP? I've tried using ticks, but it doesn't appear to work - the tick function doesn't execute more than once at

Re: [PHP-DEV] multithreading

2002-05-15 Thread brad lafountain
PHP isn't threadable... PHP is Thread Safe meaning you can run multiple php scripts on multiple threads for the samp process but you can't create threads inside php code. What i don't see is why you want to go from cron .. using ither php-cli or cgi.. to using threads. It seems you are just