时间:2021-07-01 10:21:17 帮助过:15人阅读
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> var a="a b"; console.log(a.replace(/\t/g,"")); </script> </body> </html>
运行效果图如下:
希望本文所述对大家PHP程序设计有所帮助。
更多php中preg_replace正则替换用法分析【一次替换多个值】相关文章请关注PHP中文网!