Posted in PHP onJune 18, 2013
<?php $name = 'Today 3? , very/ cold'; $name = strtolower($name); //$name = preg_replace('/[^a-z0-9\s]/','',$name); $name = preg_replace('/[\.\s+\?,\/"]/','_',$name); //change spaces echo $name; ?>
其中
$name = preg_replace('/[\.\s+\?,\/"]/','_',$name); //change spaces
\.\s+\?,\/"为正则表达式,表示查找. 空符号 ? / " 这五个字符
其他可自行添加,添加的时候要查找正则手册
php多个字符串替换成同一个的解决方法
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@