Heim > Artikel > Backend-Entwicklung > php通过网页地址获取该地址下的内容 php获取网页内容 php获取网页源码 php打开网
方法1(对于PHP5及更高版本):
$readcontents = fopen(“http://www.phpres.com/index.html”, “rb”);
$contents = stream_get_contents($readcontents);
fclose($readcontents);
echo $contents;
方法2:
echo file_get_contents(“http://www.phpres.com/index.html”);
例:
以上就介绍了php通过网页地址获取该地址下的内容,包括了网页地址,php方面的内容,希望对PHP教程有兴趣的朋友有所帮助。