Heim > Artikel > Backend-Entwicklung > So schleifen Sie die Anforderungsschnittstelle in PHP
Methode 1:
Verwenden Sie file_get_contents, um den Inhalt im Get-Modus abzurufen
[php] view plaincopyprint? <?php $url='http://www.domain.com/'; $html = file_get_contents($url); echo $html; ?>
Methode 2:
Öffnen Sie die URL mit fopen und holen Sie sich den Inhalt mit der get-Methode
[php] view plaincopyprint? <?php $fp = fopen($url, 'r'); //返回请求流信息(数组:请求状态,阻塞,返回值是否为空,返回值http头等) [php] view plaincopyprint? stream_get_meta_data($fp); [php] view plaincopyprint? while(!feof($fp)) {
Empfohlenes Tutorial:
PHP-Entwicklung Video-Tutorial zur APP-Schnittstelle
Das obige ist der detaillierte Inhalt vonSo schleifen Sie die Anforderungsschnittstelle in PHP. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!