CodeIgniter(3.1.4)框架中成功/错误跳转

Posted Archibald Witwicky

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CodeIgniter(3.1.4)框架中成功/错误跳转相关的知识,希望对你有一定的参考价值。

if ( ! function_exists(‘error‘))
{
    /**
     * 错误跳转
     */
    function error($mes, $url)
    {
        echo ‘<script type="text/javascript">alert("‘.html_escape($mes).‘");history.back();</script>‘;
        exit();
    }
}

// ------------------------------------------------------------------------

if ( ! function_exists(‘success‘))
{
    /**
     * 成功跳转
     */
    function success($mes, $url)
    {
        echo ‘<script type="text/javascript">alert("‘.html_escape($mes).‘");window.location.href="‘.$url.‘";</script>‘;
        exit();
    }
}

以上是关于CodeIgniter(3.1.4)框架中成功/错误跳转的主要内容,如果未能解决你的问题,请参考以下文章

CodeIgniter(3.1.4)框架中设置多级目录

002.让CI4框架CodeIgniter显示错误信息

当数据在javascript codeigniter php中使用ajax成功功能时,如何禁用页面重新加载?

在 PHP,Codeigniter 中提交带有空字段的表单时出现一些错误

来自表单输入的 CodeIgniter 重定向

如何测试我的 MySQL 更新查询在 CodeIgniter 中是不是成功? [复制]