Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在目录中包含一个页面,其中包含目录all中的功能basename(__DIR__),inc因此echo basename(__DIR__);返回目录inc,而不是目录all。
all
basename(__DIR__)
inc
echo basename(__DIR__);
我怎样才能解决这个问题?
也许,最好的方法是在文件中定义一些特定的常量,放在所有文件夹中,然后包含到其他文件夹中?
define('ALL_PATH', realpath(dirname(__FILE__)));