码迷,mamicode.com
首页 > Web开发 > 详细

php中的字符串常用函数 str_replace 字符串替换

时间:2017-02-08 14:41:08      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:color   blog   数组   code   replace   hello   替换   pre   logs   

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 字符串替换

标签:color   blog   数组   code   replace   hello   替换   pre   logs   

原文地址:http://www.cnblogs.com/sweetXiaoma/p/6377906.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!