在 Eclipse PDT/Zend Studio 中自动完成 MVC 视图变量
当使用 Zend Studio 为 MVC 框架编写视图时,有没有办法让这些变量自动完成,也许使用 PHPdoc?
例如,我在名为 $cart 的视图中设置一个变量,它是我的 ShoppingCart 类的实例。当我输入“$cart->”时,我希望 IDE 弹出并显示所有对象属性。
When using Zend Studio to write views for a MVC framework, is there any way of having those variables autocomplete, perhaps using PHPdoc?
For example, I set a variable in a view called $cart which is an instance of my ShoppingCart class. When I type "$cart->", I'd like the IDE to pop up with all of the objects properties.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Netbeans 中可以执行以下操作:
不确定它是否在 Eclipse 中工作。
in Netbeans it is possible to do the following:
not sure if it works in eclipse.