0

请问有人可以帮我吗?

我在我的网站上制作了一个 php 脚本,它将接收 get 数据,然后根据该 get 数据返回 true 或 false。

我需要一种在完全不同的服务器上通过 php 调用该脚本的方法,然后保存返回的值。

我该怎么做呢?

另外,我将如何使用 POST 来做呢?

4

2 回答 2

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

于 2012-10-07T09:09:21.043 回答
0

像这样的东西会为 GET 做:

$response = file_get_contents('your_url_here');

对于 POST,我会使用cURL

于 2012-10-07T09:09:46.520 回答