(PHP 5 >= 5.5.0)
curl_multi_setopt — エラー コードを説明する文字列テキストを返します。
説明する
文字列curl_multi_strerror ( int $errornum )
CURLM エラー コードを説明する文字列リテラルを返します。
パラメータ
エラー番号
CURLM エラーコードの定数の 1 つ。
戻り値
エラー コードを説明する文字列テキストを返します。それ以外の場合は、NULL が返されます。
例
例
<?php // cURL ハンドルを作成します$ch1 = curl_init ( " https://www.codercto.com/ " ) ; $ch2 = curl_init ( " http://php.net/ " ) //バッチ cURL ハンドルを作成します。 $mh = curl_multi_init ( ) //バッチハンドルにハンドルを追加します。 curl_multi_add_handle ( $mh , $ ch1 ) ; curl_multi_add_handle ( $mh , $ ch2 ) ;する{ $status = curl_multi_exec ( $mh , $active ) //エラーをチェックします。 if ( $status > 0 ) { //エラーメッセージを表示する エコー"エラー! n " .curl_multi_strerror ( $ status ) ; } }その間( $status === CURLM_CALL_MULTI_PERFORM || $active ) ? >