本文整理汇总了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');
}