代码之家  ›  专栏  ›  技术社区  ›  TheDoctor

告诉PhpStorm开始在特定路径中查找文件

  •  0
  • TheDoctor  · 技术社区  · 7 年前

    我的项目结构如下所示:

    enter image description here

    在我的 index.php abilities.php 具有

    <?php
        if (isset($_GET['site'])) {
            switch ($_GET['site']) {
                ...
                case 'abilities':
                    include("./content/abilities.php");
                    break;
                ...
            }
        }
    ?>
    

    在里面 能力.php Ability.php 通过

    require_once ("./model/Ability.php");
    

    它在浏览器中运行得很好,但PhpStorm表示它找不到类:

    enter image description here

    model 类的目录 Ability.php content 不存在的目录。

    能力.php 将在 root 类似目录

    比如为 能力.php

    2 回复  |  直到 7 年前
        1
  •  1
  •   marekful    7 年前

    您是否在PHPStorm中配置了项目结构?找到项目设置,您可以检查一个是否为或将目录标记为“源”。这将是您案例中屏幕截图中所示内容的父目录。

    enter image description here

        2
  •  0
  •   Difster    7 年前

    如果您只需将文件添加到PHPStorm项目中,程序就会接收到这些文件。然而,我认为你真正想要的(可能没有意识到)可能是如何使用 namespace