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

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

2.如果需要使用正则表达式 需要使用preg_replace,代码如下:

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

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

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