当我想在页面中输出几秒钟的消息然后将用户重定向到另一页面时,我遇到了障碍。
我知道我们可以用header("Refresh:4; url=http://www.targeturl.com");
中的普通PHP来做到这一点
我怎样才能在Zend Framework中做同样的事情?
谢谢。
答案 0 :(得分:1)
在重定向之前安排睡眠
sleep(4);
$this->view->_redirect('http://www.targeturl.com');
或使用元刷新
$this->headMeta()->appendHttpEquiv('Refresh', '4;URL=http://www.targeturl.com');
我认为后者就是你所追求的目标。