sp_is_mobile()

1.4.0新增

  1. sp_is_mobile()
功能:

判断是否为手机访问

参数:

返回:

boolean, true:是手机访问,false:不是

使用:
  1. if(sp_is_mobile()){
  2. echo "我是手机用户呢!";
  3. }else{
  4. echo "我不是手机用户呀,那就是电脑用户呀!";
  5. }
模板里使用
  1. <if condition="sp_is_mobile()">
  2. <div>我是手机用户呢!</div>
  3. <else/>
  4. <div>我不是手机用户呀,那就是电脑用户呀!</div>
  5. </if>