作者:大姑娘不再回_402 | 来源:互联网 | 2018-07-17 03:00
php 简单file_get_contents fopen教程
$cOntent=file_get_contents('http://down.111cn.net/');
if( !empty( $content ) ){
$info = fopen('down.txt','w+');
fwrite($info,$content);
fclose($info);
print_r(file('down.txt') );
}
?>