重複の可能性:
参照-この記号はPHPで何を意味しますか?
このチュートリアルを使用してPHPMVCを研究しています。そこで、オブジェクトの初期化に使用される次の特別な表記法を見つけました。
$this->$model =& new $model;
&はHTMLでアンパサンド(&)を表すために使用されます。ここではどういう意味ですか?。表記が見つかったクラスを以下に示します。また、そのチュートリアルはどうですか?。それは良いものですか?。できない場合は誰かが私にもっと良いものを紹介しますか?
<?php
class Controller {
protected $_model;
protected $_controller;
protected $_action;
protected $_template;
function __construct($model, $controller, $action) {
$this->_controller = $controller;
$this->_action = $action;
$this->_model = $model;
$this->$model =& new $model;
$this->_template =& new Template($controller,$action);
}
function set($name,$value) {
$this->_template->set($name,$value);
}
function __destruct() {
$this->_template->render();
}
}