(PHP 5 >= 5.5.0, PHP 7, PHP 8)
curl_multi_strerror — 返回描述错误代码的字符串
error_code
其中一个 » CURLM 错误代码 常量。
对于有效的错误代码,返回错误字符串,否则返回 null
。
示例 #1 curl_multi_strerror() 示例
<?php
// 创建 cURL 句柄
$ch1 = curl_init("http://example.com/");
$ch2 = curl_init("https://php.net/");
// 创建一个 cURL 多句柄
$mh = curl_multi_init();
// 将句柄添加到多句柄中
curl_multi_add_handle($mh, $ch1);
curl_multi_add_handle($mh, $ch2);
// 执行多句柄
do {
$status = curl_multi_exec($mh, $active);
if ($active) {
curl_multi_select($mh);
}
} while ($active && $status === CURLM_OK);
// 检查错误
if ($status != CURLM_OK) {
// 显示错误消息
echo "ERROR!\n " . curl_multi_strerror($status);
}
?>