方法1:
用file_get_contents 以get方式取得內容
[php] view plaincopyprint? <?php $url='http://www.domain.com/'; $html = file_get_contents($url); echo $html; ?>
方法2:
用fopen開啟url, 以get方式取得內容
[php] view plaincopyprint? <?php $fp = fopen($url, 'r'); //返回请求流信息(数组:请求状态,阻塞,返回值是否为空,返回值http头等) [php] view plaincopyprint? stream_get_meta_data($fp); [php] view plaincopyprint? while(!feof($fp)) {
推薦教學:
#以上是php怎麼循環請求接口的詳細內容。更多資訊請關注PHP中文網其他相關文章!