我的项目结构如下所示:
在我的index.php
中,我将abilities.php
的内容包含在
<?php
if (isset($_GET['site'])) {
switch ($_GET['site']) {
...
case 'abilities':
include("./content/abilities.php");
break;
...
}
}
?>
在abilities.php
我通过
Ability.php
require_once ("./model/Ability.php");
在浏览器中运行良好,但PhpStorm说无法找到类:
这很可能是因为它在model
目录中搜索了Ability.php
目录中没有的content
目录。
所以我的问题是如何告诉PhpStorm开始查找文件,好像我的abilities.php
会在root
目录中,如index.php
?
为abilities.php
设置备用路径,以便开始查找文件或类似内容。