首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

zend framework 1.11有关问题

2012-10-23 
zend framework 1.11问题在控制器中,$this-getRequest-...没有getPost() getServer()等方法,或者说是用

zend framework 1.11问题
在控制器中,$this->getRequest->...没有getPost() getServer()等方法,或者说是用此方法得不到值,这是为什么啊,
谁能帮帮我啊

[解决办法]
就是说原来是有的?
那你应先看看他的说明文档

[解决办法]
zend 不是出了2.0 而且还不能向下兼容嘛,要是学习的话就不要1.x咯...
[解决办法]
实在不行就$_GET $_POST喽
$request = $this->getRequest();
$request->getParam('username')

$reponse=$this->getResponse();
if ($request->isPost()) {
$username = $request->getPost('username');
}

应该木有问题啊

热点排行