방법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 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.