str_word_count() 是 PHP 的內置函數。它用於返回有關字符串中使用的單詞的信息或計算字符串中的單詞數。
用法:
str_word_count(string,return,char)
參數 | 描述 | 必需/可選 |
---|---|---|
string | 指定要檢查的字符串。 | 必需的。 |
return | 指定函數的返回值。 值:
|
可選。 |
Char | 指定字符。 | Optional |
例子1
<?php
$str="PHP Javatpoint";
echo "Your string is:".$str;
echo "<br>";
echo "By using str_word_count():".str_word_count($str);
?>
輸出:
Your string is:PHP Javatpoint By using str_word_count():2
例子2
<?php
$str="PHP Javatpoint";
echo "Your string is:".$str;
echo "<br>";
print_r(str_word_count("$str",1));
?>
輸出:
Your string is:PHP Javatpoint Array ( [0] => PHP [1] => Javatpoint )
例子3
<?php
print_r(str_word_count("Hello PHP & Javatpoint!",1));
echo "<br>";
print_r(str_word_count("Hello PHP & Javatpoint!",1,"&"));
?>
輸出:
Array ( [0] => Hello [1] => PHP [2] => Javatpoint ) Array ( [0] => Hello [1] => PHP [2] => & [3] => Javatpoint )
參考:
http://php.net/manual/en/function.str-word-count.php相關用法
- PHP string str_repeat()用法及代碼示例
- PHP string str_shuffle()用法及代碼示例
- PHP string str_ireplace()用法及代碼示例
- PHP string str_split()用法及代碼示例
- PHP string str_rot13()用法及代碼示例
- PHP string str_pad()用法及代碼示例
- PHP string strcoll()用法及代碼示例
- PHP string strip_tags()用法及代碼示例
- PHP string strchr()用法及代碼示例
- PHP string strcasecmp()用法及代碼示例
- PHP string strcmp()用法及代碼示例
- PHP string sha1()用法及代碼示例
- PHP string setlocale()用法及代碼示例
- PHP string sha1_file()用法及代碼示例
- PHP string similar_text()用法及代碼示例
- PHP string rtrim()用法及代碼示例
- PHP string printf()用法及代碼示例
- PHP string ord()用法及代碼示例
- PHP string join()用法及代碼示例
注:本文由純淨天空篩選整理自 PHP string str_word_count() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。