0
を使用しようとしている:私はProfilleコントローラーを持っているCodeIgniterのは、私は、このプロパティでMY_Controllerクラスを持つ親
class MY_Controller extends CI_Controller
{
public $_template;
protected $_view;
...
//Some methods here
}
:
class profile extends MY_Controller {
protected $_view = 'consultoria/profile';
public function __construct() {
parent::__construct();
}
public function index() {
$this->_template->build($this->_view);
}
}
私は親を使用しようとすると問題がある::の代わりに、
:インデックス()parent::_template->build($this->_view)
エラーメッセージに$これは、
Parse error: syntax error, unexpected T_OBJECT_OPERATOR in C:\xampp\htdocs\officeprime\application\controllers\consultoria\profile.php on line 18
なぜ私は親を使用できないのですか?
私は 'parent ::'が親クラスのものを指すのに使用されていると考えました... – Gerep
いいえ、 '$ this->' – safarov