curl_multi_strerror

(PHP 5 >= 5.5.0, PHP 7, PHP 8)

curl_multi_strerror返回字符串描述的错误代码

说明

curl_multi_strerror(int $error_code): ?string

返回一个用以描述所给 CURLM 错误代码所对应的错误信息。

参数

error_code

» CURLM 错误代码中的常量之一。

返回值

返回可用错误代码所对应的错误信息,否则返回 null

示例

示例 #1 curl_multi_strerror() 函数的范例:

<?php
// 创建 cURL 句柄
$ch1 = curl_init("http://example.com/");
$ch2 = curl_init("http://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) {
// Display error message
echo "ERROR!\n " . curl_multi_strerror($status);
}

?>

参见

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top