请有人帮帮我吗?
我在我的网站上创建了一个php脚本,它将接收获取数据,然后根据获取数据返回true或false。
我需要一种方法在完全不同的服务器上通过php调用该脚本,然后保存返回的值。
我将如何做到这一点?
另外,我如何使用POST进行操作?
答案 0 :(得分:0)
您可以使用cURL在其他服务器上调用脚本,并将数据发布到该脚本。
//set POST variables
$url = 'http://example.com/post.php';
$fields = array(
'data1' => urlencode($data1),
'data2' => urlencode($data2),
);
//url-ify the data for the POST
foreach($fields as $key=>$value) { $fields_string .= $key.'='.$value.'&'; }
rtrim($fields_string, '&');
//open connection
$ch = curl_init();
//set the url, number of POST vars, POST data
curl_setopt($ch,CURLOPT_URL, $url);
curl_setopt($ch,CURLOPT_POST, count($fields));
curl_setopt($ch,CURLOPT_POSTFIELDS, $fields_string);
//execute post
$result = curl_exec($ch);
//close connection
curl_close($ch);
您将在此处了解更多详情:http://php.net/manual/en/ref.curl.php
答案 1 :(得分:0)