我正在开发一个基于 MVC 的小型 PHP 网站。我有一个前端控制器 ( front.php
),它加载控制器 ( services.php
)、运行操作方法 ( hostingAction()
) 并包含 html ( view.phtml
)。view.phtml ( $this->renderContent()
) 中有一个包含内部内容 ( hosting.phtml
) 的方法调用。
问题:如何$title = 'My Title';
在方法中设置属性(例如),hostingAction()
然后在 view.phtml 中设置<title><?php echo $title ?></title>
?
Zend Framework$this->view->title = 'My Title';
在控制器中执行类似的操作,然后在视图中执行类似<title><?php echo $view->title; ?></title>
.
目前我正在重载属性。我正在设法在控制器操作中设置属性,但无法在我的视图中访问它们。我在这里做错了什么?
示例代码:
前台.php
class front {
private $view;
function __construct() {
$this->view = new viewProperties();
$this->constructController();
include('application/views/view.phtml');
}
private function constructController() {
$c = new services();
$this->doAction($c);
}
public function renderContent() {
include('application/views/services/hosting.php');
}
private function doAction($c) {
$c->hostingAction();
}
}
服务.php
class services {
public function hostingAction() {
$this->view->page_title = 'Services - Hosting';
$this->view->banner_src = '/assets/images/banners/home_02.jpg';
$this->view->banner_title = 'reload';
}
}
视图属性.php
class viewProperties {
private $data = array ();
public function __set($name, $value) {
$this->data[$name] = $value;
}
public function __get($name) {
if (array_key_exists($name, $this->data)) {
return $this->data[$name];
}
}
}
视图.phtml
<html>
<head>
<title><?php echo $this->view->page_title; ?></title>
</head>
<body>
<?php $this->renderContent() ?>
</body>
</html>
托管.phtml
<div id="banner">
<img src="<?php echo $this->view->banner_src ?>" alt="<?php echo $this->view->banner_title ?>" />
</div>