NetBeans。代码完成。 PHP

发布于 2024-11-09 18:14:07 字数 708 浏览 0 评论 0原文

我使用这样的东西:

index.php(entryPoint)

<?php
include 'view.php';
$view= new View;

$view->a=5;
$view->render('index.tpl');

view.php
<?

clas View{    
   public function render($file){     
        include 'templates/'.$file;
   }
}

templates/index.tpl


<?php /* @var $this View */?>
//some html
<?php $this->| ?> /*I want to see "a" incode completion here
                  How it is possible?

我知道 ZendFramework 插件中允许这样的东西 也许我可以将它添加到我的框架中? 其他一些 html */

更新: 我想在 index.tpl 的代码完成中查看我在 index.php 中使用的属性 属性不应在 view php 中作为属性列出

I use something like this:

index.php(entryPoint)

<?php
include 'view.php';
$view= new View;

$view->a=5;
$view->render('index.tpl');

view.php
<?

clas View{    
   public function render($file){     
        include 'templates/'.$file;
   }
}

templates/index.tpl


<?php /* @var $this View */?>
//some html
<?php $this->| ?> /*I want to see "a" incode completion here
                  How it is possible?

I know that something like this are allowed in ZendFramework plugin
Maybe I can add it with my framework?
some other html */

UPD:
I want to see properties which I used in index.php in code completion in index.tpl
Properties should not be listed in view php as properties

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

情绪 2024-11-16 18:14:07

这是行不通的:

<?php /* @var $this Viewer */?>

有几个原因。首先,文档块以 /** 开头,而不仅仅是 /* 。此外,您还声明 $thisViewer 的实例,但实际的类名称是 View。这不匹配,因此您将不会获得任何代码完成(或者至少不会获得预期的代码完成)。
所以你应该使用:

<?php /** @var $this View */?>

另外,如果你想访问属性,你应该声明它们。这是 Netbeans 了解这些属性的唯一方法。

我还没有测试在文档块中为 $this 指定一个类是否真的有效。

This won't work:

<?php /* @var $this Viewer */?>

And there are a few reasons for that. First, docblocks start with /** not just /* . Also you declare $this to be an instance of Viewer, but the actual class name is View. That doesn't match, so you won't get any code completion (or at least not the expected code completion).
So you should use:

<?php /** @var $this View */?>

Also, if you want access to properties, you should declare them. That's the only way Netbeans will know about the properties.

I have not tested if specifying a class for $this in a docblock will actually work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文