php路径未找到。包含表达式未解决

时间:2016-01-06 04:10:03

标签: php path phpstorm subdirectory include-once

网站Javascript和CSS无效,因为包含的路径似乎不起作用,PHPStorm显示找不到路径。但路径正确如图1:index.php.png

我认为问题是APP_DIR,将其删除,PHPStorm不再突出显示路径。

如图2所示:
no highlight

但我无法删除APP_DIR,因为它链接到许多文件,包括CSS。 尝试了3天,我不知道,请帮帮我。

1 个答案:

答案 0 :(得分:0)

出于调试目的,请尝试

if ( !defined('APP_DIR') ) {
    trigger_error('APP_DIR not defined', E_USER_ERROR);
}

if ( substr(APP_DIR, -1)!=='/' && substr(APP_DIR, -1)!=='\\' ) {
    trigger_error("APP_DIR has no trailing slash. APP_DIR.'conf/....' wont work, but APP_DIR.'/conf/...' might");
}

/** Configuration of SI */
include_once APP_DIR.'conf/site.php';