我想在php A中运行GET curl以从php B获取数据。
这是php A中的一个例子(我从这里得到http://support.qualityunit.com/061754-How-to-make-REST-calls-in-PHP)
//next example will recieve all messages for specific conversation
$service_url = 'http://localhost/test/getFrom.php?id=1';
$curl = curl_init($service_url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
$curl_response = curl_exec($curl);
if ($curl_response === false) {
$info = curl_getinfo($curl);
curl_close($curl);
die('error occured during curl exec. Additioanl info: ' . var_export($info));
}
curl_close($curl);
$decoded = json_decode($curl_response);
if (isset($decoded->response->status) && $decoded->response->status == 'ERROR') {
die('error occured: ' . $decoded->response->errormessage);
}
echo 'response ok!';
var_export($decoded->response);
我也试过这个例子(Trying to use curl to do a GET, value being sent is allows null)
在php B. 它将获取ID,运行一些脚本并生成一个ARRAY。
我想把这个ARRAY从B变成A.
B仅在A请求来自B的GET时运行。
问题是我不知道ARRAY如何从B传递到A.
请提供一些建议,谢谢。
答案 0 :(得分:0)
您提供的代码预计会返回JSON编码数组。最简单的方法是简单地在PHP B中对您的数组进行JSON编码并将其回显到页面。
然后CURL将能够读取PHP B的内容,根据需要进行解码和处理。
// PHP B
<?php
// Check for $_GET params
// Get ID
$id = $_GET['id'];
// Do processing, query etc
....
// Format and display array as JSON
echo(json_encode($result_array));
die();
?>
另请注意:
if (isset($decoded->response->status) && $decoded->response->status == 'ERROR') {
die('error occured: ' . $decoded->response->errormessage);
}
代码期望以特定方式格式化数组。因此,要么将PHP B中的数组与相同的格式匹配,要么根据需要更新代码。