将逗号,空格,回车, |,分隔的字符串转换为数组
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将逗号,空格,回车, |,分隔的字符串转换为数组相关的知识,希望对你有一定的参考价值。
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/[email protected]” 博客,请务必保留此出处http://liang3391.blog.51cto.com/178205/1976281
以上是关于将逗号,空格,回车, |,分隔的字符串转换为数组的主要内容,如果未能解决你的问题,请参考以下文章