欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  类库下载

php控制层页面提示方法

程序员文章站 2022-03-14 09:55:42
...
showMessage方法
 /**
     * Alert show message
     * @param string $message
     * @param string $mode 跳转地址
     * @return void
     */
    function showMessage($message, $mode = "back")
    {
        ob_start();
        if($mode == "back")
        {
            $cmd = "history.go(-1)";
        }
        else
        {
            $cmd = "location.href = '" . $mode . "';";
        }

        echo '';

        ob_end_flush();
        exit();
    }
相关标签: php