It works:
do
{
curl_multi_exec( $this->mh, $active );
curl_multi_select( $this->mh );
}
while ( $active > 0 );
while ( $mrci = curl_multi_info_read( $this->mh ) )
{
if ( $mrci[ 'result' ] === CURLE_OK ) // Равно 0
{
$this->workingResult( $mrci[ 'handle' ] );
}
else
{
$this->badResult( $mrci );
}
}