我真的不明白为什么,但尽管 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 一样吗?