-1

我在我的程序中使用 curl。
我的代码是:

$tref = $_GET['tref'];

$url = "https://paypaad.bankpasargad.com/PaymentTrace";
$curl_session = curl_init($url); // Initiate CURL session -> notice: CURL should be enabled.
curl_setopt($curl_session, CURLOPT_POST, 1);    // Set post method on.
//curl_setopt($curl_session, CURLOPT_FOLLOWLOCATION, 1); // Follow where ever it goes
curl_setopt($curl_session, CURLOPT_HEADER, 0); //Don't return http headers
//curl_setopt($curl_session, CURLOPT_RETURNTRANSFER, 1); // Return the content of the call
$post_data = "tref=".$tref;
curl_setopt($curl_session, CURLOPT_POSTFIELDS, $post_data);

// Get returning data
$output = curl_exec($curl_session);
print_r($output);
print_r($post_data);

但是当我在我的主机中使用此代码时,$output未设置并且当正确使用另一台服务器时此代码。
我在服务器上的表现如何。

4

2 回答 2

2

嘿找到了这段代码:

$data = curl_exec($curl_handle);
if ($data === FALSE) {
   die(curl_error($curl_handle));
} else {
   $html_str .= $data;
}

当我使用这段代码时,我遇到了这个错误:

SSL证书问题,验证CA证书是否OK。详细信息:错误:14090086:SSL 例程:SSL3_GET_SERVER_CERTIFICATE:证书验证失败

然后我搜索这个错误并面对这个链接 http://unitstep.net/blog/2009/05/05/using-curl-in-php-to-access-https-ssltls-protected-sites/

我添加了这段代码

curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

curl_exec():

于 2012-06-14T12:14:31.283 回答
0

确保您的服务器 curl 已启用..

更改 ;extension=php_curl.dll

extension=php_curl.dll

在 php.ini 中,您还检查了对未定义函数 curl_init() 的调用。?

于 2012-06-13T09:25:25.640 回答