php中preg_replace正则替换用法分析【一次替换多个值】

时间:2022-04-23 16:35:51

本文实例讲述了phppreg_replace正则替换用法。分享给大家供大家参考,具体如下:

1.php 的 preg_replace 与 str_replace 都是默认 /g 的,全部替换

2.如果需要使用正则表达式 需要使用preg_replace

?
1
2
3
4
5
6
7
8
9
10
11
<?php
$a = "abc defa
bcd ef";
$b= preg_replace("/\t|a/","",$a);
echo($b);
/*
输出:
bc def
bcd ef
*/
?>

另外对比一下js中的replace,感觉php的语法 不优美

?
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<script>
var a="a b";
console.log(a.replace(/\t/g,""));
</script>
</body>
</html>

运行效果图如下:

php中preg_replace正则替换用法分析【一次替换多个值】

希望本文所述对大家PHP程序设计有所帮助。