接口問題
php調用接口最主要的就是使用curl抓取信息
$ch = curl_init();
curl_setopt($ch
curl_setopt($ch
curl_setopt($ch
curl_setopt($ch
curl_setopt($ch
$response = curl_exec($ch); //獲取返回的數據
curl_close($ch); //關閉
From:http://tw.wingwit.com/Article/program/PHP/201311/20899.html