懂网站优化的CMS站群系统

    成功提示,错误提示

    创建时间:2020-06-21 作者:牛哥 浏览次数:542
    /**
         *
         * 错误提示程序
         *
         * 应用程序的控制器类可以覆盖该函数以使用自定义的错误提示
         *
         * @param $msg   错误提示需要的相关信息
         * @param $url   跳转地址
         */
        public function error($msg, $url = ''){
    		$url = empty($url) ? "window.history.back();" : "location.href="{$url}";";
    		echo "<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><script>function sptips(){alert("{$msg}");{$url}}</script></head><body onload="sptips()"></body></html>";
    		exit;
        }
    
        /**
         *
         * 成功提示程序
         *
         * 应用程序的控制器类可以覆盖该函数以使用自定义的成功提示
    	 *
         * @param $msg   成功提示需要的相关信息
         * @param $url   跳转地址
         */
        public function success($msg, $url = ''){
    		$url = empty($url) ? "window.history.back();" : "location.href="{$url}";";
    		echo "<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><script>function sptips(){alert("{$msg}");{$url}}</script></head><body onload="sptips()"></body></html>";
    		exit;
        }