欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

php多个字符串替换成同一个的解决方法

程序员文章站 2022-07-11 09:14:46
复制代码 代码如下:
复制代码 代码如下:

<?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+\?,\/"为正则表达式,表示查找.   空符号    ?    /     "        这五个字符
其他可自行添加,添加的时候要查找正则手册