本文主要介紹了php跨伺服器存取方法,實例總結了常見的php跨伺服器存取技巧。希望對大家有幫助。
具體分析如下:
最近專案中遇到跨伺服器存取的問題,研究了好幾天,總結如下:
1、用file_get_contents方法
$host = 'url'; $randomNumber=file_get_contents($host); echo $$randomNumber;
2、用Curl
$host = 'url'; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $host); // 返回结果 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_HEADER, 0); // 使用POST提交 curl_setopt($ch, CURLOPT_POST, 1); // POST参数 $str = array('a=1','b=2','c=3'); curl_setopt($ch, CURLOPT_POSTFIELDS, $str); // 结果 $res = curl_exec($ch); curl_close($ch);
使用curl函式庫,使用curl函式庫之前,你可能需要查看一下php.ini,查看是否已經開啟了curl擴充功能
3、用fopen開啟url, 以get方式取得內容
<?php $url="http://www.jb51.net/"; $fp=fopen($url,'r'); while(!feof($fp)){ $result.=fgets($fp,1024); } echo" $result"; fclose($fp); ?>
相關推薦:
#########################################################################以上是php實作跨伺服器訪問的詳細內容。更多資訊請關注PHP中文網其他相關文章!