Heim >Backend-Entwicklung >PHP-Tutorial >Wie kann man Wortinstanzen in PHP effizient sortieren und zählen?
Wortinstanzen in einer Zeichenfolge mit PHP sortieren und zählen
Um Wortinstanzen in einer bestimmten Zeichenfolge in PHP zu sortieren und zu zählen, sollten Sie die Nutzung in Betracht ziehen Die folgenden Techniken:
<code class="php">$str = 'happy beautiful happy lines pear gin happy lines rock happy lines pear '; $words = array_count_values(str_word_count($str, 1)); print_r($words);</code>
Dieser Code gibt das folgende Array aus:
Array ( [happy] => 4 [beautiful] => 1 [lines] => 3 [pear] => 2 [gin] => 1 [rock] => 1 )
<code class="php">arsort($words); print_r($words);</code>
Dies führt zu folgendem sortierten Array:
Array ( [happy] => 4 [lines] => 3 [pear] => 2 [rock] => 1 [gin] => 1 [beautiful] => 1 )
Das obige ist der detaillierte Inhalt vonWie kann man Wortinstanzen in PHP effizient sortieren und zählen?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!