织梦dedecms系统ShowMsg函数妙用
发布时间:2020-12-14 05:19:37 所属栏目:Dedecms 来源:网络整理
导读:在对DedeCMS做2次开发的时候可能提示信息会经常用到,为了方便在此将ShowMsg方法提取出来,使用方法:? ShowMsg(“提示信息”,“进行跳转的页面URL”);? ShowMsg的代码如下:? function ShowMsg($msg,$gourl,$onlymsg = 0,$limittime = 0) //系统提示信息?
在对DedeCMS做2次开发的时候可能提示信息会经常用到,为了方便在此将ShowMsg方法提取出来,使用方法:? ShowMsg(“提示信息”,“进行跳转的页面URL”);? ShowMsg的代码如下:? function ShowMsg($msg,$gourl,$onlymsg = 0,$limittime = 0) //系统提示信息? {? /*? *$msg 信息提示的内容? *$gourl 需要跳转的网址? *$onlymsg 1 表示不自动跳转 0表示自动跳转? *$limittime 跳转的时间? */? ?? ?global $dsql,$cfg_ver_lang;? ?? ?if (eregi ( "^gb",$cfg_ver_lang ))? ?? ?$cfg_ver_lang = 'utf-8';? ?? ?$htmlhead = " ?? ? ? ? ? ? ? ? content="text/html; charset=utf-8" />rn";? ?? ?$htmlhead .= " ?? ?if ($limittime == 0)? ?? ? ? ?$litime = 3000;? ?? ?else? ?? ? ? ?$litime = $limittime;? ?? ?? ?if ($gourl == "-1") {? ?? ? ? ?if ($limittime == 0)? ?? ? ? ? ? ?$litime = 3000;? ?? ? ? ?$gourl = "javascript:history.go(-1);";? ?? ?}? ?? ?? ?if ($gourl == "" || $onlymsg == 1) {? ?? ? ? ?$msg = "? 相关内容
|