搜尋
首頁PHP 函式庫其它類別庫Mobile解析字串的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

相關文章

是否有專門用於解析 PDF 表格的 PHP 函式庫?是否有專門用於解析 PDF 表格的 PHP 函式庫?

02Nov2024

是否有用於解析 PDF 的 PHP 庫?我需要從 PDF 中提取表格並將其轉換為...

如何在沒有外部函式庫的情況下在 Java 中將 URI 查詢字串解析為名稱-值對?如何在沒有外部函式庫的情況下在 Java 中將 URI 查詢字串解析為名稱-值對?

24Dec2024

將 URI 字串解析為名稱-值集合簡介將 URI 字串解析為其組成元素是 Web 中的常見任務...

為什麼要從 Python 中的「object」繼承:一個類別繼承問題為什麼要從 Python 中的「object」繼承:一個類別繼承問題

24Dec2024

了解 Python 類別繼承在 Python 中,類別可以從其他類別繼承,這使它們能夠存取父類別的屬性並...

如何使用已建立的程式庫安全地加密和解密 PHP 中的字串?如何使用已建立的程式庫安全地加密和解密 PHP 中的字串?

17Dec2024

在 PHP 中加密和解密字串避免常見陷阱在深入研究加密和解密的實作之前,至關重要...

如何在 Linux 上建立和使用動態共用 C 類別庫?如何在 Linux 上建立和使用動態共用 C 類別庫?

05Dec2024

在 Linux 上建立和使用動態共用 C 類別庫建立共用類別庫要建立共用 C 類別庫,您可以依照...

為什麼無法在字段初始化程序中初始化非靜態字段?為什麼無法在字段初始化程序中初始化非靜態字段?

03Jan2025

了解欄位初始化問題在您的程式碼中,您有一個儲存庫類別 (DinnerRepository) 和一個服務類別 (Service),它使用...

See all articles