Maison > Article > développement back-end > Comment boucler l'interface de requête en php
Méthode 1 :
Utilisez file_get_contents pour obtenir le contenu en mode obtenir
[php] view plaincopyprint? <?php $url='http://www.domain.com/'; $html = file_get_contents($url); echo $html; ?>
Méthode 2 :
Ouvrez l'url avec fopen et récupérez le contenu avec la méthode get
[php] view plaincopyprint? <?php $fp = fopen($url, 'r'); //返回请求流信息(数组:请求状态,阻塞,返回值是否为空,返回值http头等) [php] view plaincopyprint? stream_get_meta_data($fp); [php] view plaincopyprint? while(!feof($fp)) {
Tutoriel recommandé :
Développement PHP Tutoriel vidéo sur l'interface APP
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!