城市字符串----转数组( 加空格---preg_split) 正则分割成数组
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了城市字符串----转数组( 加空格---preg_split) 正则分割成数组相关的知识,希望对你有一定的参考价值。
public function toarray(){
echo ‘<meta http-equiv="Content-type" content="text/html:charset=utf-8">‘;
echo ‘<pre>‘;
$str =‘北京
广州
上海
武汉
深圳
天津
南京
重庆
成都
杭州
西安‘;
$arr = preg_split(‘/[\s]+/‘,$str);
return $arr;
}
以上是关于城市字符串----转数组( 加空格---preg_split) 正则分割成数组的主要内容,如果未能解决你的问题,请参考以下文章
preg_replace、preg_replace_callback 和数组到字符串的转换
PHP Regex 仅允许 a-z A-Z 1-9 并用下划线替换空格