douque9982 2017-07-24 20:39
浏览 34
已采纳

如果文件存在,则找不到以.php结尾的文件[复制]

This question already has an answer here:

I need to check if a file exist but the system cannot find the file, it may be because the code is ending the $var with .php I dont know. Here is the code

  $thefile=$_POST['files'];
    if (file_exists('/infrastructure/datacenter/'.$thefile.'.php'))
{include('infrastructure/datacenter/'.$thefile.'.php');}

Any idea why the file cannot be found? Because the file really exist

the file name in the test is 2001.php and it does exist but php says it does not exist

SOLVED

There was a missing / in the include second path

</div>
  • 写回答

2条回答 默认 最新

  • dongshan9338 2017-07-24 20:41
    关注

    You have the if statement checking an absolute path, while your include statement is relative.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?