Home >Backend Development >PHP Tutorial >ZF 引入文件问题

ZF 引入文件问题

WBOY
WBOYOriginal
2016-06-23 14:15:23966browse

Zend 文件引入 表模型

这个是控制器
 require_once APPLICATION_PATH.'phperror_config.php'; require_once APPLICATION_PATH.'/models/Admin.php';class AdminController extends Zend_Controller_Action{	public function init()	{		/* Initialize action controller here */	}	//跳到登录界面	public function indexAction(){			}			//实现登录功能的检查	public function loginAction(){				$name=$this->getRequest()->getParam('adminname');//用zend的方法来取界面中的变量		$password=$this->getRequest()->getParam('adminpassword');									//创建一个表模型对象	    $adminModel=new Admin();						print_r($name);		exit();				


这个是表模型
 class Admin extends Zend_Db_Table {   	   	 protected  $_name="admin";	 protected $_primary="id";




问题在创建不成功表模型,一旦加上require_once连界面都看不到 是空白 的 ,或者说是应用程序错误,我刚自学这个框架,不懂啊 ,求大侠指点

回复讨论(解决方案)

就是那句

$adminModel=new Admin();
出错了 ,该怎么弄啊 ?????

没人啊 ,结贴了

你自己看看你最上面的require_once 是不是少了一个什么符号

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn