-
-
/**
- * transform ' hello, world !' to array('hello', 'world')
- * url: http://bbs.it-home.org
- * date: 2013/2/17
- */
- 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;
- }
- //test http://bbs.it-home.org
- $strs = 'Code is poetry! WTF!';
- var_dump(strsToArray($strs));
- ?>
复制代码
您可能感兴趣的文章:
php空格分割文本为数组的例子
php分割中文字符串为数组的简单例子
php分割中英文字符串的几种方法
php split()字符串分割函数应用举例
php分割GBK中文乱码的解决方法
php字符串分割函数explode的例子
|