1. 程式人生 > >將逗號,空格,回車, |,分隔的字符串轉換為數組

將逗號,空格,回車, |,分隔的字符串轉換為數組

將逗號 空格 回車 | 分隔的字符串轉換為數組

function strsToArray($strs) {
$result = array();
$array = array();
$strs = str_replace(‘,‘, ‘,‘, $strs);
$strs = str_replace("n", ‘,‘, $strs);
$strs = str_replace("rn", ‘,‘, $strs);
$strs = str_replace(‘ ‘, ‘,‘, $strs);
$array = explode(‘,‘, $strs);
foreach ($array as $key =>
$value) {
if (‘‘ != ($value = trim($value))) {
$result[] = $value;
}
}
return $result;
}


本文出自 “PHP/Linux@HeFei” 博客,請務必保留此出處http://liang3391.blog.51cto.com/178205/1976281

將逗號,空格,回車, |,分隔的字符串轉換為數組