如果我从类$data
方法中包含HTML文件Default.phtml
,则无法在Default.phtml
中看到变量Code_Controller.php
的建议。
这是一个代码示例。
Code_Controller:
abstract class Core_Controller{
protected $template;
public function display(){
$data['title'] = 'Title of site';
if(Core_Config::$is_admin){
require_once ADMIN_TEMPLATES_PATH . $this->template . '.phtml';
}else{
require_once PUBLIC_TEMPLATES_PATH . $this->template . '.phtml';
}
}
}
Default.phtml
<!DOCTYPE html>
<html>
<head>
<title><?php echo $data['title'] ?></title>
</head>
<body>
The content of the document......
</body>
</html>
有人有点想法吗?
感谢您的建议。
答案 0 :(得分:3)
在这种情况下的标准方法:使用PHPDoc并在那里声明该变量(在文件的顶部),例如
<?php
/** @var array $data */
?>
...HTML CODE HERE...