2016-12-28 76 views
0

這是可能的代碼完成,如果我在控制器爾康NetBeans的代碼完成MVC

$this -> view -> this_is_my_var = 'hello world' 

定義和我的觀點寫的(一個.phtml文件)

$this -> view -> this_is(...) 

Netbeans的顯示提示this_is_my_var

回答

0

也許你正在尋找?

PHP

$this->view->this_is_my_var1 = 'hello world'; 
$this->view->this_is_my_var2 = new \Phalcon\Registry(); 

查看

/** 
* @var string $this_is_my_var1 
* @var \Phalcon\Registry $this_is_my_var2 
*/ 
+0

這是手動的解決方案,因爲我必須創建瓦爾評論。我正在尋找可以提示變量的自動解決方案。 – ShutDown