php中的字符串常用函数 str_replace 字符串替换
Posted Sweet小马
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php中的字符串常用函数 str_replace 字符串替换相关的知识,希望对你有一定的参考价值。
1 <?php 2 $str = "hello world!"; 3 echo(str_replace(array(‘hello‘, ‘world‘), array(‘tom‘, ‘class‘), $str); 4 //输出结果:tom class! 5 6 $str2 = "hello world!"; 7 echo(str_replace(‘hello‘, ‘cat‘, $str2); 8 //输出结果:cat world!
第3行:数组依次对应替换
第7行:字符串部分替换
以上是关于php中的字符串常用函数 str_replace 字符串替换的主要内容,如果未能解决你的问题,请参考以下文章