织梦模板建站程序, dedecms, 系统, 函数, 妙用
在对DedeCMS做2次开发的时候可能提示信息会经常用到,为了方便在此将ShowMsg具体的方法提取出来,使用具体的方法: ShowMsg(“提示信息”,“进行跳转的页面URL”); ShowMsg的具体代码如下如下: functionShowMsg($msg,$gourl,$onlymsg=0,$limittime=0)//系统提示信息 { /* *$msg信息提示的内容 *$gourl需要跳转的网址 *$onlymsg1表示不自动跳转0表示自动跳转 *$limittime跳转的时间 */ global$dsql,$cfg_ver_lang; if(eregi("^gb",$cfg_ver_lang)) $cfg_ver_lang='utf-8'; $htmlhead=" 系统提示 "; $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=" "; }else{ $func="varpgo=0; functionJumpUrl(){ if(pgo==0){location='$gourl';pgo=1;} } "; $rmsg=$func; $rmsg.="document.write(\" "; $rmsg.="提示信息! \"); "; $rmsg.="document.write(\" \"); "; $rmsg.="document.write(\"".str_replace("\"","“",$msg)."\"); "; $rmsg.="document.write(\""; if($onlymsg==0){ if($gourl!="javascript:;"&&$gourl!=""){ $rmsg.=" 如果您的浏览器没反应,请点击这里..."; } $rmsg.=" \"); "; if($gourl!="javascript:;"&&$gourl!=""){ $rmsg.="setTimeout('JumpUrl()',$litime);"; } }else{ $rmsg.=" \"); "; } $msg=$htmlhead.$rmsg.$htmlfoot; } if(isset($dsql)&&is_object($dsql)) @$dsql->Close(); echo$msg; } 妙用 , 函数 , 系统 |
自定义织梦dedeCMS后台图集上传图片文件名称顺序显示