<code> $url="https://api.shanbay.com/bdc/search/?word=hello"; $ch=curl_init(); $timeout=5; curl_setopt($ch,CURLOPT_URL,$url); curl_setopt($ch,CURLOPT_RETURNTRANSFER,1); curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout); $data=curl_exec($ch); curl_close($ch);</code>
這是我的程式碼,我用的是phpstudy整合環境,php擴充裡面已經擴充了curl,php 版本是5.6 ,頁面沒有任何錯誤提示,大家誰知道這是什麼問題!