file_get_contents($url)
补充:
$data = file_get_contents('http://www.phpres.com/index.html') ;
//$data是string类型
$dataarray = file('http://www.phpres.com/index.html') ;
//$dataarray 是array类型
file_get_contents($url)
补充:
$data = file_get_contents('http://www.phpres.com/index.html') ;
//$data是string类型
$dataarray = file('http://www.phpres.com/index.html') ;
//$dataarray 是array类型