当前位置:Gxlcms > PHP教程 > php实现多个字符串替换成同一个的代码

php实现多个字符串替换成同一个的代码

时间:2021-07-01 10:21:17 帮助过:12人阅读

  1. $name = 'Today 3? , very/ cold';
  2. $name = strtolower($name);
  3. //$name = preg_replace('/[^a-z0-9\s]/','',$name);
  4. $name = preg_replace('/[\.\s+\?,\/"]/','_',$name); //change spaces
  5. echo $name;
  6. ?>

其中:

$name = preg_replace('/[\.\s+\?,\/"]/','_',$name); //change spaces

\.\s+\?,\/"为正则表达式,表示查找. 空符号 ? / " 这五个字符 其他可自行添加,不明白的地方,可以参考下正则表达式有关的内容。

人气教程排行