如何使用 netbeans 6.9.1 将变量的代码完成添加到 zend_view 中?
我正在评估切换到 netbeans ide 来管理我的 zend_framework 项目;
我希望在我的视图中自动完成变量名称,对于我在此截屏视频中看到的操作中定义的变量,
http://netbeans.org/kb/docs/php/zend-framework-screencast.html ,
但我无法弄清楚。
当我数字 $this->在任何视图中我都看不到变量的名称。
我非常想使用这个功能。
谢谢你, 米尔科。
i'm evaluating to switch to netbeans ide for managing my zend_framework project;
i'd like to have autocompletion for variable's name into my view, for variables defined in actions as i see in this screencast,
http://netbeans.org/kb/docs/php/zend-framework-screencast.html ,
but i can't figure out.
When i digit $this-> in any view i can't see none variable's name.
I'd like a lot to use this feature.
Thank you,
Mirco.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要将 Zend Framework 放置在 Netbeans 内项目的包含路径中或项目本身中。
然后,您可以在“->”后使用 cmd+空格自动完成对象的方法。如果 Netbeans 不知道您可以使用
/* @var $objInstance Object_Class_Name
在方法调用中,您可以使用 cmd+b 查看该方法的参数。
You need to have Zend Framework either in the include path for the project within Netbeans or within the project itself.
You can then use cmd+space after a "->" to autocomplete an object's methods. If Netbeans doesn't know the object you can use
/* @var $objInstance Object_Class_Name
Within a method call, you can use cmd+b to see the parameters of the method.
以下是使用 Robs 解决方案的视图的代码示例。
Here is a code example for the view using Robs solution.