我有3个网络服务,为我的酒店预订引擎提供数据。如果按顺序运行它会花费太长时间。因此我想使用线程运行它们。但不确定php线程是否会支持这个以及它是否安全(因为所有3个处理Web服务的进程都会读写共享表)
任何人都可以告诉我如何继续吗?
答案 0 :(得分:1)
我通常使用以下功能将Simultaneuos HTTP请求发送到Web服务
<?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(
'http://search.yahooapis.com/VideoSearchService/V1/videoSearch?appid=YahooDemo&query=Pearl+Jam&output=json',
'http://search.yahooapis.com/ImageSearchService/V1/imageSearch?appid=YahooDemo&query=Pearl+Jam&output=json',
'http://search.yahooapis.com/AudioSearchService/V1/artistSearch?appid=YahooDemo&artist=Pearl+Jam&output=json'
);
$r = multiRequest($data);
echo '<pre>';
print_r($r);
?>
希望这可以帮助你:)
同时查看此答案here
答案 1 :(得分:0)
如果AJAX使用AJAX调用您的Web服务是好的.. 由于ajax是异步任务,因此可以异步调用服务并在成功函数上编写更多进程或代码。
您可以像这样使用ajax:
$.ajax({
type: "GET", // insert type
dataType: "jsonp",
url: "http://address/to/your/web/service",
success: function(data){
alert(data);
}
});
请参阅Here了解详情。