php获取外部URL,使用PHP从外部API / URL获取信息
1)不要使用
file_get_contents()(如果可以幫助的話)
這是因為您需要enable fopen_wrappers才能使file_get_contents()能夠處理外部源.有時這是關閉的(取決于您的主機;如共享主機),因此您的應用程序將會中斷.
一般來說,一個很好的選擇是curl()
2)使用curl()執行GET請求
這很簡單.使用curl()發出帶有一些標頭的GET請求.
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => "http://api.minetools.eu/ping/play.desnia.net/25565",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => array(
"cache-control: no-cache"
),
));
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
3)使用響應
響應在JSON object中返回.我們可以使用json_decode()將其放入可用的對象或數組中.
$response = json_decode($response, true); //because of true, it's in an array
echo 'Online: '. $response['players']['online'];
總結
以上是生活随笔為你收集整理的php获取外部URL,使用PHP从外部API / URL获取信息的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 计算机基本网络测试命令实验报告,网络连通
- 下一篇: linux如何运行synaptic,Li