php中preg_replace正则替换用法分析(一次替换多个值)
1.php 的 preg_replace 与 str_replace 都是默认 /g 的,全部替换
2.如果需要使用正则表达式 需要使用preg_replace,代码如下:
- <?php
- $a= "abc defa
- bcd ef";
- $b= preg_replace("/\t|a/","",$a);
- echo($b);
- /*
- 输出:
- bc def
- bcd ef
- */
- ?>
另外对比一下js中的replace,感觉php的语法,不优美,代码如下:
- <!DOCTYPE html>
- <html >
- <head>
- <meta charset="UTF-8">
- <title></title>
- </head>
- <body>
- <script>
- vara="a b";
- console.log(a.replace(/\t/g,""));
- </script>
- </body>
- </html>