蛋糕框架中自动完成助手的最佳 IDE 是什么
什么是自动完成助手的最佳 IDE? 因为我不记得 html helper 或其他的所有方法或属性 例如:
$this->Html->tableHeaders(array('Date','Title','Active'));
但我应该编写tableHeaders,而IDE无法识别Html的属性和方法。
谢谢。
what is best IDE for auto-complete helper .
because i can not remember all method or property of html helper or another
for example :
$this->Html->tableHeaders(array('Date','Title','Active'));
but i should write tableHeaders and IDE not recognize Html's property and methods.
thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
![扫码二维码加入Web技术交流群](/public/img/jiaqun_03.jpg)
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我一直很喜欢将 Eclipse+PDT 与 Cake 一起使用,因为它很好地支持完成。
参阅:Eclipse 中 CakePHP 的代码完成
请 另外值得注意的是,至少 CakePHP 的主要开发人员之一使用 Eclipse(我知道这一点是因为他写了上面链接的文章)。
I've always been a fan of using Eclipse+PDT with Cake, as it supports completion quite well.
See: Code Completion for CakePHP in Eclipse
It's also worth noting that at least one of the main developers of CakePHP uses Eclipse (I know this because he wrote the above-linked article).
您不应仅仅因为 IDE 的自动完成功能而选择 IDE。
我只知道 PHPDesigner 处理得很好。
不过,所有 IDE 都需要一个文件,可以在其中找到框架的特定规则。
否则他们将不知道如何自动完成某些课程。
you should not only select IDEs because of their autocomplete functionality.
I only know PHPDesigner which handles it pretty well.
All IDEs need a file where the specific rules for the framework can be found, though.
Otherwise they would not know how to autocomplete some classes.