str_word_count()関数は、文字列内の単語数をカウントするために使用されます。 この関数はPHP4で導入されました。 formatの値によって、戻り値が決まります。
価値 | 戻り値 |
---|---|
0(デフォルト) | 文字列で見つかった単語の数 |
1 | 文字列で見つかったすべての単語の配列 |
2 | 連想配列。キーは位置であり、値は文字列内のそれらの位置で見つかった単語です。 |
構文:
str_word_count(string $string, int $format = 0, ?string $characters = null): array|int
str_word_count()関数は、文字列内の単語数を返します。 2番目のパラメーターをstr_word_count()に渡して他のことを実行させることもできますが、文字列パラメーターのみを渡すと、文字列で見つかった一意の単語の数が返されます。
パラメーター
パラメータ | 説明 |
---|---|
ストリング | 文字列 |
フォーマット | この関数の戻り値を指定します。 (0または1または2) |
文字 | ‘word’と見なされる追加の文字のリスト |
戻り値
選択した形式に応じて、配列または整数を返します。
例
例1:
<?php $text = “Good morning friends! have nice day”; $a=str_word_count($text,1); $b=str_word_count($text,2); $c=str_word_count($text); print_r($a); print_r($b); print $c; ?>
上記のプログラムの出力は次のとおりです。
Array ( [0] => Good [1] => morning [2] => friends [3] => have [4] => nice [5] => day ) Array ( [0] => Good [5] => morning [13] => friends [22] => have [27] => nice [32] => day ) 6
The post PHP関数str_word_count()–文字列で使用されている単語に関する情報を返します–オタク日記 appeared first on Gamingsym Japan.