0
我是新來的Zend framework.I'm讓試圖查看網頁時,出現以下錯誤錯誤視圖文件
Fatal error: Using $this when not in object context in D:\xampp\htdocs\neemjobs\application\views\scripts\register\index.phtml on line 1
class RegisterController extends Zend_Controller_Action
{
public function init()
{
/* Initialize action controller here */
}
public function indexAction()
{
$this->view->pageTitle = "Zend_Form Example";
$this->view->bodyCopy = "<p >Please fill out this form.</p>";
$form = new forms_ContactForm();
$this->view->form = $form;
}
}
我的看法是
<?php echo $this->pageTitle ;?>
<?php echo $this->bodyCopy ;?>
是這樣您的完整視圖?試着在你的視圖文件的頂部做的var_dump – JohnP 2011-05-09 09:52:17