代碼如下 復制代碼
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];
}
//實例應用
代碼如下 復制代碼 $str ='word,word,world,cup';/*
array
(
[0] => cup
[1] => word
[2] => world
)
*/