Discuz showmessage函數解析[轉]

函數相關文件

\source\function\function_core.php
\source\function\function_message.phpphp

## 函數解釋 /** * 顯示提示信息 * @param $message - 提示信息,可中文也能夠是 lang_message.php 中的數組 key 值 * @param $url_forward - 提示後跳轉的 url * @param $values - 提示信息中可替換的變量值 array(key => value ...) 形式 * @param $extraparam - 擴展參數 array(key => value ...) 形式 * 跳轉控制 header header跳轉 timeout 定時跳轉 refreshtime 自定義跳轉時間 closetime 自定義關閉時間,限於 msgtype = 2 locationtime 自定義跳轉時間,限於 msgtype = 2 內容控制 alert alert 圖標樣式 right/info/error return 顯示請返回 redirectmsg 下載時用的提示信息,當跳轉時顯示的信息樣式 0:若是您的瀏覽器沒有自動跳轉,請點擊此連接 1:若是 n 秒後下載仍未開始,請點擊此連接 msgtype 信息樣式 1:非 Ajax 2:Ajax 彈出框 3:Ajax 只顯示信息文本 showmsg 顯示信息文本 showdialog 關閉原彈出框顯示 showDialog 信息,限於 msgtype = 2 login 未登陸時顯示登陸連接 Ajax 控制 handle 執行 js 回調函數 */ function showmessage($message, $url_forward = '', $values = array(), $extraparam = array(), $custom = 0) { require_once libfile('function/message'); return dshowmessage($message, $url_forward, $values, $extraparam, $custom); } 
 

用法1

showmessage('您已更新博客名爲:{name} ', '', array('name' => '新博客名稱')); 
 

用法2

showmessage('恭喜您,操做成功,得到獎勵{credit}積分!',NULL, array('credit' => 888),array('alert' => 'right','login'=>'1')); 
 

用法3

原文地址:https://www.lhbbk.com/archives/122/showmessage('恭喜您,內容發佈成功,正在跳轉到首頁!',$_G['siteurl'], array(), array('locationtime'=>true,'refreshtime'=>3, 'showdialog'=>1, 'showmsg' => true)); 
相關文章
相關標籤/搜索