0

我用 PHP 创建了一个小文件管理器。一切正常,阅读,删除,移动,编辑。但是在显示要修改的文件内容时,出现了问题。

在以前的表单中,我让用户选择要修改的文件,在另一个页面中,我获取文件名,并使用以下代码在 textarea 中显示其内容:

<?php
if (isset($_POST['file'])) {
    $file = $_POST['file'];
?>

<form action="edit_file_process3.php" method="get">
    <p>This is the content of the file <?php echo $file; ?>. Now you can modify it:</p>
<textarea rows="10" cols="70" name="content"><?php readfile($file)   ?></textarea>

<p><input type="submit" name="submit" value="edit <?php echo $file; ?>" /> </p>
</form>

<a href="read2.php">Come back to the file manager</a>

我第一次选择一个文件时,在 textarea 中而不是它的正确内容,它看起来像这样:

<br />
<font size='1'><table class='xdebug-error xe-warning xe-scream' dir='ltr' border='1' cellspacing='0' cellpadding='1'>
<tr><th align='left' bgcolor='#f57900' colspan="5"><span style='background-color: #cc0000; color: #fce94f; font-size: x-large;'>( ! )</span> SCREAM: Error suppression ignored for</th></tr>
<tr><th align='left' bgcolor='#f57900' colspan="5"><span style='background-color: #cc0000; color: #fce94f; font-size: x-large;'>( ! )</span> Warning: readfile(prova4.txt): failed to open stream: No such file or directory in C:\wamp\www\LEARNING\Files\edit_file_process3.php on line <i>50</i></th></tr>
<tr><th align='left' bgcolor='#e9b96e' colspan='5'>Call Stack</th></tr>
<tr><th align='center' bgcolor='#eeeeec'>#</th><th align='left' bgcolor='#eeeeec'>Time</th><th align='left' bgcolor='#eeeeec'>Memory</th><th align='left' bgcolor='#eeeeec'>Function</th><th align='left' bgcolor='#eeeeec'>Location</th></tr>
<tr><td bgcolor='#eeeeec' align='center'>1</td><td bgcolor='#eeeeec' align='center'>0.0004</td><td bgcolor='#eeeeec' align='right'>144848</td><td bgcolor='#eeeeec'>{main}(  )</td><td title='C:\wamp\www\LEARNING\Files\edit_file_process3.php' bgcolor='#eeeeec'>..\edit_file_process3.php<b>:</b>0</td></tr>
<tr><td bgcolor='#eeeeec' align='center'>2</td><td bgcolor='#eeeeec' align='center'>0.0004</td><td bgcolor='#eeeeec' align='right'>145248</td><td bgcolor='#eeeeec'><a href='http://www.php.net/readfile' target='_new'>readfile</a>
(  )</td><td title='C:\wamp\www\LEARNING\Files\edit_file_process3.php' bgcolor='#eeeeec'>..\edit_file_process3.php<b>:</b>50</td></tr>
</table></font>

如果我用其他东西覆盖这个文本,那么它就可以工作,下一次,textarea 将显示文件的正确内容。但是第一次这样做是很讨厌的。为什么会这样?

4

1 回答 1

0

您必须确保脚本在正确的目录中查找文件。

您可以使用任一绝对路径,例如。/from/root/to/my/dir或相对路径,例如。../where/is/my/file.

如果您使用相对路径,则必须具有相对于查找文件的脚本的正确路径。否则你会被唠叨failed to open stream: No such file or directory在这种情况下。

编辑

如果我理解正确,您正在尝试编辑文件系统中应该已经存在的文件。当您第一次尝试打开它时,您会收到您所描述的此错误。那是因为脚本在错误的目录中寻找文件。当您“编辑”并保存它时,就像 Barmar 指出的那样,您很可能实际上是在另一个目录中创建一个新文件。在此之后,您可能在不同目录中存在两个具有相同名称的不同文件。另一个是显示在“文件资源管理器”中的那个,另一个是您实际编辑的那个。

于 2013-06-20T16:34:53.900 回答