私はある種独自のMVCフレームワークを作成しましたが、他のフレームワークがどのように「コントローラー」から「ビュー」にプロパティを送信できるかについて興味があります。$this->view->name = 'value';
Zendは私のコードに沿って何かをします:
ファイル:services_hosting.php
class services_hosting extends controller {
function __construct($sMvcName) {
parent::__construct($sMvcName);
$this->setViewSettings();
}
public function setViewSettings() {
$p = new property;
$p->banner = '/path/to/banners/home.jpg';
}
}
ファイル:controller.php
class controller {
public $sMvcName = "home";
function __construct($sMvcName) {
if ($sMvcName) {
$this->sMvcName = $sMvcName;
}
include('path/to/views/view.phtml');
}
public function renderContent() {
include('path/to/views/'.$this->sMvcName.'.phtml');
}
}
ファイル:property.php
class property {
private $data = array();
protected static $_instance = null;
public static function getInstance() {
if (null === self::$_instance) {
self::$_instance = new self();
}
return self::$_instance;
}
public function __set($name, $value) {
$this->data[$name] = $value;
}
public function __get($name) {
if (array_key_exists($name, $this->data)) {
return $this->data[$name];
}
}
public function __isset($name) {
return isset($this->data[$name]);
}
public function __unset($name) {
unset($this->data[$name]);
}
}
私のservices_hosting.phtml「view」ファイルには次のものがあります。
<img src="<?php echo $this->p->banner ?>" />
これは機能しません。私は根本的に間違ったことをしていますか、それとも私の論理は間違っていますか?今はぐるぐる回っているようです。どんな助けでも大歓迎です。