Possible Duplicate:
Threads in PHP.
I m getting a list of 20 urls. I need to process some operation on these request simultaneously.
and my php execution will continue only after all request is over.
example
<?php
for($i=0;$i<120;$i++)
{
//parallel processing of 20 urls
}
come here only if all request are fullfilled