国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

PHP之string之str_word_count()函數(shù)使用

liukai90 / 1649人閱讀

摘要:返回字符串中單詞的使用情況統(tǒng)計中單詞的數(shù)量。如果可選的參數(shù)沒有被指定,那么返回值是一個代表單詞數(shù)量的整型數(shù)。如果指定了參數(shù),返回值將是一個數(shù)組,數(shù)組的內(nèi)容則取決于參數(shù)。指定函數(shù)的返回值。

str_word_count

(PHP 4 >= 4.3.0, PHP 5, PHP 7)

str_word_count — Return information about words used in a string

str_word_count — 返回字符串中單詞的使用情況

Description
mixed str_word_count ( 
    string $string [, 
    int $format = 0 [, 
    string $charlist ]] 
    )
/**
Counts the number of words inside string. If the optional format is not specified, then the return value will be an integer representing the number of words found. In the event the format is specified, the return value will be an array, content of which is dependent on the format. The possible value for the format and the resultant outputs are listed below.
統(tǒng)計 string 中單詞的數(shù)量。如果可選的參數(shù) format 沒有被指定,那么返回值是一個代表單詞數(shù)量的整型數(shù)。如果指定了 format 參數(shù),返回值將是一個數(shù)組,數(shù)組的內(nèi)容則取決于 format 參數(shù)。format 的可能值和相應(yīng)的輸出結(jié)果如下所列。
For the purpose of this function, "word" is defined as a locale dependent string containing alphabetic characters, which also may contain, but not start with """ and "-" characters.
對于這個函數(shù)的目的來說,單詞的定義是一個與區(qū)域設(shè)置相關(guān)的字符串。這個字符串可以包含字母字符,也可以包含 """ 和 "-" 字符(但不能以這兩個字符開始)。
*/
Parameters string

The string

字符串。

format

Specify the return value of this function. The current supported values are:

指定函數(shù)的返回值。當(dāng)前支持的值如下:

0 - returns the number of words found 返回單詞數(shù)量

1 - returns an array containing all the words found inside the string 返回一個包含 string 中全部單詞的數(shù)組

2 - returns an associative array, where the key is the numeric position of the word inside the string and the value is the actual word itself 返回關(guān)聯(lián)數(shù)組。數(shù)組的鍵是單詞在 string 中出現(xiàn)的數(shù)值位置,數(shù)組的值是這個單詞

charlist

A list of additional characters which will be considered as "word"

附加的字符串列表,其中的字符將被視為單詞的一部分。

Return Values

Returns an array or an integer, depending on the format chosen.

返回一個數(shù)組或整型數(shù),這取決于 format 參數(shù)的選擇。

Changelog

5.1.0 Added the charlist parameter

Examples
 Hello
//[1] => fri
//[2] => nd
//[3] => you"re
//[4] => looking
//[5] => good
//[6] => today
print_r( str_word_count( $str, 1 ) );

//[0] => Hello
//[6] => fri
//[10] => nd
//[14] => you"re
//[28] => looking
//[45] => good
//[50] => today
print_r( str_word_count( $str, 2 ) );

//[0] => Hello
//[1] => fri3nd
//[2] => you"re
//[3] => looking
//[4] => good
//[5] => today
print_r( str_word_count( $str, 1, "àá??3" ) );

//[0] => Hello
//[1] => fri3nd
//[2] => you"re
//[3] => looking
//[4] => good
//[5] => today
//[6] => look123
//[7] => ing
$str = "Hello fri3nd, you"re
       looking          good today!
       look1234ing";
print_r( str_word_count( $str, 1, "0..3" ) );
See

http://php.net/manual/zh/func...

All rights reserved

文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://specialneedsforspecialkids.com/yun/28367.html

相關(guān)文章

  • PHP開發(fā)手冊》筆記PHP中關(guān)于字符串的操作函數(shù)

    摘要:字符串分解操作要進(jìn)行分解的字符串分解的長度。獲取字符串的長度函數(shù)要進(jìn)行長度計算的字符串包括首尾空格獲取字符串的子串要進(jìn)行截取的字符串截取開始的字符位置可選,要截取的字符串長度。默認(rèn)從開始到結(jié)尾,字符串的第一個位置為獲取字符串的子串 一 print和echo print 1)語法 int print(str);//str--要輸出的字符串,返回值永遠(yuǎn)為1 --語法1 p...

    lingdududu 評論0 收藏0
  • 10個你或許不了解但實(shí)用的PHP函數(shù)

    摘要:使用方法當(dāng)你想要把代碼顯示到頁面上時,函數(shù)就會非常有用,它可以用內(nèi)置定義的語法高亮顏色把你提供的代碼高亮顯示。使用方法這是一個非常有用的函數(shù),它能返回指定的文件,并按照語法高亮突出顯示文件內(nèi)容。 PHP的功能越來越強(qiáng)大,里面有著非常豐富的內(nèi)置函數(shù)。資深的PHP程序員對它們可能都很熟悉,但很多的PHP學(xué)習(xí)者,仍然對一些非常有用的函數(shù)不太熟悉。 這篇文章里,我們就列舉10個你或許不了解但實(shí)...

    RdouTyping 評論0 收藏0
  • PHP中比較有用的幾個函數(shù)

    摘要:當(dāng)你想要把代碼顯示到頁面上時,函數(shù)就會非常有用,它可以用內(nèi)置定義的語法高亮顏色把你提供的代碼高亮顯示。這是一個非常有用的函數(shù),它能返回指定的文件,并按照語法高亮突出顯示文件內(nèi)容。利用這個函數(shù),用戶可以拒絕瀏覽器端終止執(zhí)行腳本的請求。 php_check_syntax 這個函數(shù)可以用來檢查特定文件中的PHP語法是否正確。 highlight_string 當(dāng)你想要把PHP代碼顯...

    wangshijun 評論0 收藏0
  • PHP常用180函數(shù)總結(jié)

    摘要:輸入兩個數(shù)組輸出返回完成后的數(shù)組在數(shù)組中根據(jù)條件取出一段值,并返回。如果要再用遍歷數(shù)組,必須使用。返回值數(shù)組中當(dāng)前指針位置的鍵值對并向前移動數(shù)組指針。鍵值對被返回為四個單元的數(shù)組,鍵名為,,和。 數(shù)學(xué)函數(shù) 1.abs(): 求絕對值 $abs = abs(-4.2); //4.2 輸入: 數(shù)字 輸出: 絕對值數(shù)字 2.ceil(): 進(jìn)一法取整 echo ceil(9.999); /...

    HtmlCssJs 評論0 收藏0
  • PHP基礎(chǔ)知識小結(jié)

    原始數(shù)據(jù)類型(9種) 基本數(shù)據(jù)類型: 整形(integer)、浮點(diǎn)型(float)、字符串(string)、布爾型(boolean) 復(fù)合數(shù)據(jù)類型:數(shù)組(array)、對象(object)、callable(可調(diào)用) 特殊數(shù)據(jù)類型:資源類型(resource) 和 NULL 變量相關(guān)處理函數(shù) is_bool($var)????????判斷是否為布爾型 is_int($var)????...

    RancherLabs 評論0 收藏0

發(fā)表評論

0條評論

最新活動
閱讀需要支付1元查看
<