I was getting data from query, and single query take 10 second and queries are running one after the other, i want a process where all these queries run parallely and return me the result and assign to respective keys.$result = array(); foreach( $array as $key => $value ) { $result[$value] = $this->getDetailData( $value ); }
$result = array(); foreach( $array as $key => $value ) { $result[$value] = $this->getDetailData( $value ); }