0
沒有響應我使用此代碼來獲得使用php curl
服務器使用curl POST請求
守則post
請求URL的內容看起來如下:
// Get cURL resource
$curl = curl_init();
// Set some options - we are passing in a useragent too here
curl_setopt_array($curl, array(
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_URL => 'http://www1.ptt.gov.tr/tr/interaktif/sonuc-yd.php',
CURLOPT_USERAGENT => 'Codular Sample cURL Request',
CURLOPT_POST => 1,
CURLOPT_POSTFIELDS => array(
'barcode' => 'CP021325078TR',
'security_code' => $capcha2
)
));
// Send the request & save response to $resp
$resp = curl_exec($curl);
// Close request to clear up some resources
curl_close($curl);
echo "<pre>";
var_dump($resp);
echo "</pre>";
結果似乎並沒有返回什麼都沒有。
這段代碼有什麼問題?
從哪裏u檢驗了嗎? 也在這裏你有鏈接,你可以手動提出請求,看看發生了什麼後臺: http://www1.ptt.gov.tr/tr/interaktif/kayitliposta-yd_yeniweb.php – 2014-10-26 14:37:39
該頁面不是加載在我的瀏覽器中。 – 2014-10-26 14:40:01
進行測試:http://3v4l.org – 2014-10-26 14:40:28