PHP推断了引用php文档本身的路径

时间:2018-06-27 20:13:12

标签: php

基本上,此错误消息说明了一切:

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似乎正在通过自身搜索该文件。我已经尝试了很多方法,包括使用绝对路径,但无济于事。它总是搜索我放在其括号内的内容。

1 个答案:

答案 0 :(得分:0)

file_get_contents的文件名使用string自变量。

尝试更改file_get_contents(./users.txt)

file_get_contents('./users.txt')

编辑:

在评论中进行讨论之后,还请确保检查文件的名称是否错误。即users.txt.txt