搜索
首页PHP 库Other librariesMobile解析字符串的PHP库
Mobile解析字符串的PHP库
<?php
if( file_exists(dirname(__FILE__).'/nicejson/nicejson.php') ) {
include_once dirname(__FILE__).'/nicejson/nicejson.php';
}
require_once dirname(__FILE__).'/../Mobile_Detect.php';
$detect = new Mobile_Detect;
$json = array(
// The current version of Mobile Detect class that
// is being exported.
'version' => $detect->getScriptVersion(),
// All headers that trigger 'isMobile' to be 'true',
// before reaching the User-Agent match detection.
'headerMatch' => $detect->getMobileHeaders(),
// All possible User-Agent headers.
'uaHttpHeaders' => $detect->getUaHttpHeaders(),
// All the regexes that trigger 'isMobile' or 'isTablet'
// to be true.
'uaMatch' => array(
// If match is found, triggers 'isMobile' to be true.
'phones'   => $detect->getPhoneDevices(),
// Triggers 'isTablet' to be true.
'tablets'  => $detect->getTabletDevices(),
// If match is found, triggers 'isMobile' to be true.
'browsers' => $detect->getBrowsers(),
// If match is found, triggers 'isMobile' to be true.
'os'       => $detect->getOperatingSystems(),
// Various utilities. To be further discussed.
'utilities' => $detect->getUtilities()
)
);

字符串主要用于编程,概念说明、函数解释、用法详述见正文,这里补充一点:字符串在存储上类似字符数组,所以它每一位的单个元素都是可以提取的,如s=“abcdefghij”,则s[1]=“a”,s[10]="j",而字符串的零位正是它的长度,如s[0]=10(※上述功能Ansistring没有。),这可以给我们提供很多方便,如高精度运算时每一位都可以转化为数字存入数组。

免责声明

本站所有资源均由网友贡献或各大下载网站转载。请自行检查软件的完整性!本站所有资源仅供学习参考。请不要将它们用于商业目的。否则,一切后果由您负责!如有侵权,请联系我们删除。联系方式:admin@php.cn

相关文章

php include()字符串,并解析字符串的有关问题php include()字符串,并解析字符串的有关问题

13Jun2016

php include()字符串,并解析字符串的问题我需要include()这样一个字符串  $str ='1111 ';要求能输出111和时间,但是现在只能输出111而无法解析时间函数.求解

数据库连接字符串解析的正则表达式数据库连接字符串解析的正则表达式

07Jun2016

最近在写一个Windows Mobile的小程序,其中需要访问数据库,数据库连接字符串大致如下: Data Source=Zongsoft.MAS.sdf;Password=xxxxxx;Persist Security Info=True 其中的 Data Source 部分指定了数据库文件的名称,但是当使用 DbConnection.Open() 方法进

php压缩和解压缩字符串的方法,php解压缩字符串php压缩和解压缩字符串的方法,php解压缩字符串

13Jun2016

php压缩和解压缩字符串的方法,php解压缩字符串。php压缩和解压缩字符串的方法,php解压缩字符串 本文实例讲述了php压缩和解压缩字符串的方法。分享给大家供大家参考。具体如下: 下面

PHP函数介绍—parse_url(): 解析URL字符串PHP函数介绍—parse_url(): 解析URL字符串

24Jul2023

PHP函数介绍—parse_url():解析URL字符串在进行网页开发时,我们经常需要解析URL字符串,从中获取主机名、端口号、路径等信息。在PHP中,我们可以使用parse_url()函数来完成这个任务。parse_url()函数接受一个URL字符串作为参数,并将其分解为一个关联数组,包含了URL的不同部分。下面是parse_url()函数的语法:par

php 中文字符串截取方法解析,php 中文字符串截取方法解析,

13Jun2016

php 中文字符串截取方法解析,。php 中文字符串截取方法解析, 用PHP函数substr截取中文字符可能会出现乱码,主要是substr可能硬生生的将一个中文字符锯成两半。 解决办法

PHP操纵字符串函数解析实战PHP操纵字符串函数解析实战

15Jun2023

PHP语言是一种十分优秀的编程语言,广泛应用于网络编程、Web开发等领域。在PHP语言中,操纵字符串函数被广泛使用,是一个非常常用的功能模块。本篇文章将介绍PHP操纵字符串函数的一些技巧和实战案例。字符串截取在PHP语言中,字符串截取是一种十分重要的操作。PHP提供了多种字符串截取函数,比如substr、mb_substr等。我们可以使用这些函数来截取字符串

See all articles