了解PHP中的__DIR__常量

时间:2018-10-13 17:47:52

标签: php directory constants

所以这一直困扰着我。

假设我有一个结构,例如:

-

-src
--app.php
-test
--test.php

index.php

在index.php中,使用

require __DIR__.'/test/test.php';

找到文件,一切正常。但是,如果我们通过src文件夹,如下所示:

index.php

require __DIR__.'/app/app.php';

app / app.php

require __DIR__.'/../test/test.php';

Windows用户遇到这样的错误,即带参数的路径后跟斜杠不正确。

  

需要(游乐场\ testDIR \ src .. / 测试 / test.php):无法打开流

这是为什么?

0 个答案:

没有答案