<?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
相關文章
27 May 2023
一、ThinkPHP資料庫操作在ThinkPHP中,我們可以透過它提供的資料庫操作類別來進行資料庫的操作。常用的資料庫操作類別有:Db類別在ThinkPHP中,我們可以使用Db類別來進行對資料庫的增、刪、改、查等操作。其使用範例如下:
03 Nov 2017
sscanf() 函數根據指定的格式解析來自一個字串的輸入。 sscanf() 函數基於格式字串解析字串到變數中。 如果只向該函數傳遞兩個參數,則資料將以數組的形式傳回。否則,如果傳遞了額外的參數,那麼被解析的資料就會儲存在這些參數中。如果區分符的數目大於包含它們的變數的數目,則會發生錯誤。不過,如果區分符的數目小於包含它們的變數的數目,則額外的變數包含 NULL。
25 Aug 2024
JPA(Java Persistence API)提供了幾個用於將 Java 類別對應到資料庫表的註解。一個這樣有用的註解是@MappedSuperclass,它用來指定一個類,其屬性必須由其他類別繼承。
03 Jun 2023
第三方類別庫 第三方類別庫指除了ThinkPHP框架、應用專案類別庫之外的其他類別庫,一般由第三方系統或產品提供,如Smarty、Zend等系統的類別庫等。 前面使用自動載入或import方法導入的類別庫,ThinkPHP約定是以.class.php為後綴的,非這類的後綴,需要透過import的參數來控制。 但對第三類庫,由於不會有此約定,其後綴只能認為是php。為了方便的引入其他框架和系統的類別庫,ThinkPHP特意提供了導入第三方類別庫的功能。第三方類別庫統一放置在ThinkPHP系統目錄/
22 Jul 2020
這篇文章主要介紹了PHP vsprintf()函數格式化字串操作原理解析,文中透過範例程式碼介紹的非常詳細,對大家的學習或工作具有一定的參考學習價值,需要的朋友可以參考下。