sakherq
07-21-2008, 08:47 AM
hello iam writing a php script and want to it perform it's expected job faster.
the script give a sequence of orders to run a function.
function some_work($x)
{
//do $x job;
}
some_work(7625);
some_work(8432);
some_work(762545);
some_work(843254);
some_work(7542625);
some_work(65428432);
can i run these functions in a multithread mode to get faster execution ?
know how ?
the script give a sequence of orders to run a function.
function some_work($x)
{
//do $x job;
}
some_work(7625);
some_work(8432);
some_work(762545);
some_work(843254);
some_work(7542625);
some_work(65428432);
can i run these functions in a multithread mode to get faster execution ?
know how ?