gpt4 book ai didi

php - Zend 框架 url 重定向

转载 作者:行者123 更新时间:2023-12-02 05:39:19 25 4
gpt4 key购买 nike

<?php
class PI_Controller_Plugin_AssetGrabber extends Zend_Controller_Plugin_Abstract
{
public function dispatchLoopStartup(Zend_Controller_Request_Abstract $request)
{
/*
The module name
*/
$moduleName = $request->getModuleName();
/*
This modules requires the user to be loggedin in order to see the web pages!
*/
$loginRequiredModules = array('admin');

if (in_array($moduleName,$loginRequiredModules)) {
$adminLogin = new Zend_Session_Namespace('adminLogin');
if (!isset($adminLogin->loggedin)) {
/*--------------------------------------
Here I want to redirect the user
*/
$this->_redirect('/something');
}
}
}
}

我正在尝试进行重定向 $this->_redirect('/something') 但不起作用!您知道在这种情况下我该如何进行重定向吗?

最好的问候,

最佳答案

...其余代码

if (!isset($adminLogin->loggedin)) {
$baseUrl = new Zend_View_Helper_BaseUrl();
$this->getResponse()->setRedirect($baseUrl->baseUrl().'/something');
}

...其余代码

关于php - Zend 框架 url 重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2433118/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com