Sublime Text 2自动完成类名和方法[PHP]

时间:2015-10-09 12:37:04

标签: php plugins sublimetext2

我将Netbean IDE更改为sublime Text 2.不久前, 我的项目有以下文件系统:

  • 的public_html
    • 的API
      • test.api.php
    • 包括
      • myclass.inc.php
    • JS​​
    • CSS
    • ...

in include / myclass.inc.php(example)

class Myclass {

      public function testmethod(){
            echo "HELLO";
      }
}

在apis / test.api.php中。我想使用类表单包含文件夹。 例如:

$testclass = new Myclass();
$testclass->testmethod();

当我输入 $ testclass = new 时。 Sublime不是我项目中列出的类名。如果我创建了很多类。我不知道上课的名字。

相同,当我输入 $ testclass-> 时。 Sublime不是列表中方法的名称。如果在类中有很多方法。我需要在类中找到方法。

我希望在输入' '时显示课程名称。当我输入' - > '之后,我希望它在课堂上显示方法的名称。之后,我选择了名称并自动完成。与Netbean相同。

你会推荐我吗?

1 个答案:

答案 0 :(得分:1)

不需要使用IDE,您可以使用包。有很多可用于崇高的软件包,你可以去搜索here

按ctrl + shift + p(Windows,Linux)或cmd + shift + p(OS X)打开Command Pallete。开始输入'安装'选择“包控制:安装包”,然后搜索AllAutocomplete并选择它。

代码: - here