Created
March 3, 2014 17:17
-
-
Save LC43/9329828 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if( $handle ) { | |
// [...] | |
do { | |
$status = curl_multi_exec($mastercurling, $running); | |
curl_multi_select( $mastercurling ); | |
} while( $running > 0 ); | |
// } while($status == CURLM_CALL_MULTI_PERFORM); | |
// ^^ this parens should match do { but there's no way to know that. | |
// in web-mode it matches if( $handle ), | |
// other modes they don't match at all. | |
} // this matches if ($handle) but not on web-mode. | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment