如何使用 netbeans 6.9.1 将变量的代码完成添加到 zend_view 中?

发布于 2024-09-30 16:59:31 字数 365 浏览 6 评论 0原文

我正在评估切换到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

清引 2024-10-07 16:59:31

您需要将 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.

等风也等你 2024-10-07 16:59:31

以下是使用 Robs 解决方案的视图的代码示例。

<?php
/* @var $this Zend_View */
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title>Zend Framework Default Application</title>
    </head>
    <body>
        <?php echo $this->layout()->content; ?>
    </body>
</html>

Here is a code example for the view using Robs solution.

<?php
/* @var $this Zend_View */
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title>Zend Framework Default Application</title>
    </head>
    <body>
        <?php echo $this->layout()->content; ?>
    </body>
</html>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文