基本上,此错误消息说明了一切:
file_get_contents(./users.txt): failed to open stream: No such file or directory in C:\XAMPP\htdocs\login.php
此代码段抛出此错误:
$ru = file_get_contents("./users.txt");
我要访问的文件是users.txt。 PHP似乎正在通过自身搜索该文件。我已经尝试了很多方法,包括使用绝对路径,但无济于事。它总是搜索我放在其括号内的内容。
答案 0 :(得分:0)
file_get_contents
的文件名使用string
自变量。
尝试更改file_get_contents(./users.txt)
到
file_get_contents('./users.txt')
。
编辑:
在评论中进行讨论之后,还请确保检查文件的名称是否错误。即users.txt.txt
。