Voting

: three minus zero?
(Example: nine)

The Note You're Voting On

kulikov6 at yandex dot ru
29 days ago
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 );
}
}

<< Back to user notes page

To Top