我使用下面的curl multi函数来查询url数组。它工作得很好,但我需要使用基本身份验证来访问数据。通常我会通过发送以下标题进行身份验证:
$headers = array();
$headers[] = "Authorization: Basic " . base64_encode("$username:$password");
$opts = array(
'http'=>array(
'method'=>"GET",
'header' => $headers:
但是我无法弄清楚如何在我的卷曲多功能中集成它,任何人都可以帮忙吗?
<?php
function multiRequest($data, $options = array()) {
// array of curl handles
$curly = array();
// data to be returned
$result = array();
// multi handle
$mh = curl_multi_init();
// loop through $data and create curl handles
// then add them to the multi-handle
foreach ($data as $id => $d) {
$curly[$id] = curl_init();
$url = (is_array($d) && !empty($d['url'])) ? $d['url'] : $d;
curl_setopt($curly[$id], CURLOPT_URL, $url);
curl_setopt($curly[$id], CURLOPT_HEADER, 0);
curl_setopt($curly[$id], CURLOPT_RETURNTRANSFER, 1);
// post?
if (is_array($d)) {
if (!empty($d['post'])) {
curl_setopt($curly[$id], CURLOPT_POST, 1);
curl_setopt($curly[$id], CURLOPT_POSTFIELDS, $d['post']);
}
}
// extra options?
if (!empty($options)) {
curl_setopt_array($curly[$id], $options);
}
curl_multi_add_handle($mh, $curly[$id]);
}
// execute the handles
$running = null;
do {
curl_multi_exec($mh, $running);
} while($running > 0);
// get content and remove handles
foreach($curly as $id => $c) {
$result[$id] = curl_multi_getcontent($c);
curl_multi_remove_handle($mh, $c);
}
// all done
curl_multi_close($mh);
return $result;
}
?>
<?php
$data = array(
'https://xxxxxyyyyyzzzzz.json',
'https://xxxxxyyyyyzzzzz.json',
'https://xxxxxyyyyyzzzzz.json',
'https://xxxxxyyyyyzzzzz.json',
'https://xxxxxyyyyyzzzzz.json',
'https://xxxxxyyyyyzzzzz.json',
'https://xxxxxyyyyyzzzzz.json',
'https://xxxxxyyyyyzzzzz.json',
'https://xxxxxyyyyyzzzzz.json',
);
$r = multiRequest($data);
echo '<pre>';
print_r($r);
?>
答案 0 :(得分:2)
只需添加:
curl_setopt($curly[$id], CURLOPT_USERPWD, "username:password");
...到你设置的libcurl选项列表。 CURLOPT_USERPWD是通用用户+密码选项,但默认情况下会触发HTTP Basic身份验证。