コードをコピーします コードは次のとおりです:
//ファイルを開きます
$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);
fclose($fp);
echo $content;
?>