コードをコピーします コードは次のとおりです:
//ファイルを開きます
$fp=fopen('tmp.html', 'r'); を使用できます。ファイルの内容を読み取るには次の 2 つのメソッド fread を操作する関数 file_get_contents
$str=fread($fp, filesize('tmp.html')) //filesize はファイルのサイズを取得します
$content=file_get_contents( 'tmp.html');
//ファイルを書き込む
$news=fopen('news.html', 'w');
fwrite($news, $content); fp);
fclose($news);
http://www.bkjia.com/PHPjc/323823.html
www.bkjia.com
truehttp://www.bkjia.com/PHPjc/323823.html技術記事次のようにコードをコピーします。 ?php //ファイルを開きます $fp=fopen('tmp.html', 'r') //次の 2 つの関数でファイルの内容を読み取ります fread, file_get_contents $str=fread($ fp 、ファイル...