我想通過curl連接從url獲取JSON數據。當我打開鏈接時:顯示{「version」:「N/A」,「success」:true,「status」:true}。
現在,我想獲得以上內容。通過curl從url獲取JSON數據
到目前爲止,我有使用此:
$loginUrl = 'http://update.protect-website.com/index.php?plugin=firewall&action=getVersion';
$ch = curl_init();
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_URL,$loginUrl);
$result=curl_exec($ch);
curl_close($ch);
var_dump(json_decode($result));
不過,我總是得到NULL,是否有人有想法是哪裏不對?
此鏈接http://update.protect-website.com/?plugin=firewall&action=getVersion/顯示一個WordPress頁面:-) –
@MadraDavid笑,遺憾的錯誤,糾正它 –