本文实例讲述了php返回字符串中所有单词的方法。分享给大家供大家参考。具体分析如下:
这段代码返回字符串中的所有单词,当$distinct=true时去除重复元素。代码如下:
1
2
3
4
5
6
7
8
9
10
|
<?php function split_en_str( $str , $distinct =true) { preg_match_all( '/([a-zA-Z]+)/' , $str , $match ); if ( $distinct == true) { $match [1] = array_unique ( $match [1]); } sort( $match [1]); return $match [1]; } ?> |
希望本文所述对大家的php程序设计有所帮助。