class Controller_Core { include('mainview.html'); } } class Main_Controller extends Controller_Core { function index() { $this->view('mainview.html'); } }
Cytat
Fatal error: Using $this when not in object context.
Powyższy błąd występuje w jedynej linijce z $this ($this->view('mainview.html');), w kodzie podanym powyżej.
Ogólnie błąd wydaje się dziwny i nie na miejscu, w końcu używam tego $this w klasie. -.- Wie ktoś jaka jest przyczyna problemu?