방법 1:
file_get_contents를 사용하여 콘텐츠 가져오기
[php] view plaincopyprint? <?php $url='http://www.domain.com/'; $html = file_get_contents($url); echo $html; ?>
방법 2:
fopen으로 URL을 열고 콘텐츠 가져오기
[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 중국어 웹사이트의 기타 관련 기사를 참조하세요!