本文整理匯總了PHP中http::script方法的典型用法代碼示例。如果您正苦於以下問題:PHP http::script方法的具體用法?PHP http::script怎麽用?PHP http::script使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類http
的用法示例。
在下文中一共展示了http::script方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: label_read
function label_read()
{
//驗證權限,跳轉提示頁麵
if (!in_array(parent::visite_access, $this->admin_access)) {
http::skip('login/forbid');
}
$message_id = rq(3, 1);
$data['is_view'] = 1;
db::mod(parent::table, $data, $message_id);
http::script(null, 'back_refresh');
}
示例2: check_tip
static function check_tip($value, $rule, $type, $tip)
{
if (self::check($value, $rule, $type)) {
return true;
}
if (is_array($tip)) {
http::json($tip);
}
http::script($tip, 'alert');
}
示例3: verify_tip
static function verify_tip($value, $option, $tip)
{
if (self::verify($value, $option)) {
return true;
}
if (is_array($tip)) {
http::json($tip);
}
http::script($tip, 'alert');
}