0

我真的不明白为什么,但尽管 PHP 在许多站点和服务器端应用程序中使用,但我仍然找不到任何像其他语言一样具有完全自动完成功能的体面的 IDE。

特别是我在我的代码中签署了一个新对象后谈论自动完成。

例如:

<?php
    $mysqli = new mysqli($host,$user,$pass,$db); //here the auto complete knew how to help me with mysqli and documentation.
    $mysqli->query("query"); //here the auto complete didn't know to auto complete and suggest me all the functions available for the $mysqli object..

?>

对于真正知道如何完成工作的 IDE 有什么想法吗?就像 Eclipse 知道 Java 和 MS Studios 知道 .Net 一样吗?

4

2 回答 2

0

我会推荐JetBrains 的PHPStorm。他们制作了具有惊人功能的出色产品。我已经使用它多年并且上瘾了。

于 2013-07-18T17:40:14.917 回答
0

Netbeans 也是一个选项,它具有自动完成功能并且是免费的。

于 2013-07-18T17:44:07.987 回答