ファイルの内容を2回出力する以下のコードを書きました。しかし、それは一度だけでした。何故ですか?
テキストファイルの内容は次のとおりです。
My name is Sam. Sam I am.
My name is Chris and Chris I am.
The brown fox jumped over the fence.
コードは次のとおりです。
<?php
$file = "files/info.txt";
$handle = fopen($file, "rb");
echo fread($handle, filesize($file));
echo fread($handle, filesize($file));
?>
出力:
"My name is Sam. Sam I am. My name is Chris and Chris I am. The brown fox jumped over the fence."