Hello,

Does any know how run many procedures concurrently over php. For example:

$init = <current_time>;
While (($t < $timeout ) and ($allresult == 0 ) ){
$t = <current_time> - $init;
launch{
$r[1] = app1;
$r[2] = app2; $r[n] = appn;
}
$allresult = $r[1] && $r[2] && ... && $r[n];
}



Regards,

LM

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



Reply via email to