我在我的程序中使用捲曲。
和我的代碼是:收到捲曲請求
$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
沒有設置,當另一臺服務器使用此代碼正確。
我在我的服務器上如何做。
你可以選擇你自己的答案。請這樣做,所以社區知道它已經解決了,而有同樣問題的人看到它已經解決了。 – 11684