<p class="sougouContent"> <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="sycode" name="code"><?php $file_path = "test.txt"; if (file_exists($file_path)) { $fp=fopen($file_path, "a+"); $con=fread($fp, filesize($file_path)); echo $con; }else { echo "文件不存在"; } fclose($fp);?></pre><div class="contentsignin">ログイン後にコピー</div></div> <br> ファイル test.txt が 0 バイトのときに、上記の書き込みがこのプロンプトを表示するのはなぜですか? <br> <strong>警告: fread() [function.fread]: D:APMServ5.2.6wwwhtdocs では長さパラメーターが 0 より大きくなければなりません。</strong></p>