1

配置文件

class one {
    function __construct(){
        echo "hello from class one.";
    }
}

require_once("class.php"); $two = new two();

类.php

class two {
    function sayHello(){
        echo "hello from class two";
    }
}

索引.php

require_once("config.php");
$one = new one();
$two->sayHello();

使用 VS Code (win64)(带或不带 Intelephense 扩展),只在编辑器中打开index.php,我应该能够按住 ctrl 并单击“one()”和“sayHello()”来打开相关文件类声明。我注意到:

  1. 通常没有超链接的指示
  2. 如果有,它不会链接到任何地方
  3. 在极少数情况下,一个(或两者都很少)会正确链接

是否有设置或方法来提高此性能,使超链接始终如一地工作?

4

0 回答 0