Time of Update: 2017-11-03
執行個體計算字串 "Hello World!" 中的單詞數:<?phpecho str_word_count("Hello world!");?>定義和用法str_word_count() Function Compute字串中的單詞數。文法str_word_count(string,return,char)參數描述string必需。規定要檢查的字串。return可選。規定 str_word_count() 函數的傳回值。可能的值:0 -
Time of Update: 2017-11-03
執行個體把字串 "Hello" 分割到數組中:<?phpprint_r(str_split("Hello"));?>定義和用法str_split() 函數把字串分割到數組中。文法str_split(string,length)參數描述string必需。規定要分割的字串length可選。規定每個數組元素的長度。預設是 1技術細節傳回值:如果 length 小於 1,str_split() 函數將返回 FALSE。 如果 length
Time of Update: 2017-11-03
執行個體隨機地打亂字串中的所有字元:<?phpecho str_shuffle("Hello World");?>定義和用法str_shuffle() 函數隨機地打亂字串中的所有字元。文法str_shuffle(string)參數描述string必需。規定要打亂的字串。技術細節傳回值:返回已打亂的字串。PHP
Time of Update: 2017-11-03
執行個體把字串 "Hello world!" 中的字元 "world" 替換成 "Peter":<?phpecho str_replace("world","Peter","Hello world!");?>定義和用法str_replace()
Time of Update: 2017-11-03
執行個體把字串 "." 重複 13 次:<?phpecho str_repeat(".",13);?>定義和用法str_repeat() 函數把字串重複指定的次數。文法str_repeat(string,repeat)參數描述string必需。規定要重複的字串。repeat必需。規定字串將被重複的次數。必須大於等於 0。技術細節傳回值:返回被重複的字串。PHP 版本:4+PHP中有一個函數:String str_repeat($str,
Time of Update: 2017-11-03
執行個體填充字串的右側,到 20 個字元的新長度:<?php$str = "Hello World";echo str_pad($str,20,".");?>定義和用法str_pad()
Time of Update: 2017-11-03
執行個體把字串 "Hello world!" 中的字元 "WORLD"(不區分大小寫)替換成 "Peter":<?phpecho str_ireplace("WORLD","Peter","Hello world!");?>定義和用法str_ireplace()
Time of Update: 2017-11-03
執行個體Parse a string:<?php$str = "age:30 weight:60kg";sscanf($str,"age:%d weight:%dkg",$age,$weight);// show types and valuesvar_dump($age,$weight);?>sscanf() 函數根據指定的格式解析來自一個字串的輸入。 sscanf()
Time of Update: 2017-11-03
執行個體把百分比符號(%)符號替換成一個作為參數進行傳遞的變數:<?php$number = 9;$str = "Beijing";$txt = sprintf("There are %u million bicycles in %s.",$number,$str);echo $txt;?>定義和用法sprintf() 函數把格式化的字串寫入一個變數中。arg1、arg2、++
Time of Update: 2017-11-03
執行個體計算 "Hello" 的 soundex 鍵:<?php$str = "Hello";echo soundex($str);?>定義和用法soundex() Function Compute字串的 soundex 鍵。soundex 鍵是 4 字元長的字母數字字串,表示一個單詞的英文發音。soundex() 函數可用於拼字檢查程式。注釋:soundex() 函數為發音相似的單詞建立相同的鍵。提示: metaphone() 比
Time of Update: 2017-11-03
執行個體計算文字檔 "test.txt" 的 SHA-1 散列:<?php$filename = "test.txt";$sha1file = sha1_file($filename);echo $sha1file;?>上面的代碼將輸出:aaf4c61ddcc5e8a2dabede0f3b482cd9aea9434d定義和用法sha1_file() Function Compute檔案的 SHA-1 散列。sha1_file() 函數使用美國
Time of Update: 2017-11-02
執行個體計算字串 "Hello" 的 SHA-1 散列:<?php$str = "Hello";echo sha1($str);?>定義和用法sha1() Function Compute字串的 SHA-1 散列。sha1() 函數使用美國 Secure Hash 演算法 1。來自 RFC 3174 的解釋 - 美國 Secure Hash 演算法 1:SHA-1 產生一個名為報文摘要的 160
Time of Update: 2017-11-02
執行個體計算兩個字串的相似性並返回匹配字元的數目:<?phpecho similar_text("Hello World","Hello Peter");?>定義和用法similar_text() Function Compute兩個字串的相似性。該函數也能計算兩個字串的百分比相似性。注釋:levenshtein() 函數比 similar_text() 函數更快。不過,similar_text() 函數通過更少的必需修改次數提供更精確的結果。
Time of Update: 2017-11-02
執行個體在預定義的字元前添加反斜線:<?php$str = "Hello world. (can you hear me?)";echo quotemeta($str);?>定義和用法quotemeta() 函數在字串中某些預定義的字元前添加反斜線。預定義的字元:句號(.)反斜線(\)加號(+)星號(*)問號(?)方括弧([])脫字型大小(^)貨幣符號($)圓括弧(())提示:該函數可用於轉義擁有特殊意義的字元,比如 SQL 中的 ( )、[ ] 以及 *
Time of Update: 2017-11-02
執行個體輸出格式化的字串:<?php$number = 9;$str = "Beijing";printf("There are %u million bicycles in %s.",$number,$str);?>定義和用法printf() 函數輸出格式化的字串。arg1、arg2、++ 參數將被插入到主字串中的百分比符號(%)符號處。該函數是逐步執行的。在第一個 % 符號處,插入 arg1,在第二個 % 符號處,插入 arg2,依此類推。
Time of Update: 2017-11-02
執行個體輸出一些文本:<?php print "Hello world!"; ?>定義和用法print() 函數輸出一個或多個字串。注釋:print() 函數實際不是一個函數,所以您不必對它使用括弧。提示:print() 函數比 echo() 速度稍慢。文法print(strings)參數 描述strings 必需。發送到輸出的一個或多個字串。 技術細節傳回值: 總是返回 1。 PHP 版本: 4+
Time of Update: 2017-11-02
執行個體把查詢字串解析到變數中:<?phpparse_str("name=Peter&age=43");echo $name."<br>";echo $age;?>定義和用法parse_str() 函數把查詢字串解析到變數中。注釋:如果未設定 array 參數,由該函數設定的變數將覆蓋已存在的同名變數。注釋:php.ini 檔案中的 magic_quotes_gpc 設定影響該函數的輸出。如果已啟用,那麼在
Time of Update: 2017-11-02
執行個體格式化數字:<?phpecho number_format("1000000")."<br>";echo number_format("1000000",2)."<br>";echo number_format("1000000",2,",",".");?>定義和用法number_format()
Time of Update: 2017-11-02
執行個體在字串中的新行(\n)之前插入分行符號:<?phpecho nl2br("One line.\nAnother line.");?>上面代碼的瀏覽器輸出如下:One line.Another line.上面代碼的 HTML 輸入如下(查看原始碼):One line.<br />Another line.定義和用法nl2br() 函數在字串中的每個新行(\n)之前插入 HTML 分行符號(<br> 或 <br
Time of Update: 2017-11-02
執行個體en_US 國際格式:<?php$number = 1234.56;setlocale(LC_MONETARY,"en_US");echo money_format("The price is %i", $number);?>上面的代碼將輸出:The price is USD 1,234.56定義和用法money_format()