str_replace -字符串替换
返回值--该函数返回替换后的数组或者字符串。
参数:search--查找的目标值
replace--search
的替换值。
replace--search
的替换值。
subject--执行替换的数组或者字符串
subject--执行替换的数组或者字符串
count--如果被指定,它的值将被设置为替换发生的次数。
count--如果被指定,它的值将被设置为替换发生的次数。
注意:由于 str_replace() 的替换时从左到右依次进行的,进行多重替换的时候可能会替换掉之前插入的值
该函数区分大小写。使用 str_ireplace() 可以进行不区分大小写的替换。
# 将 hi -->hello
$str='hi,this is lily,history';
echo str_replace('hi','hello',$str); //hello,thellos is lily,hellostory
# 统计替换了多少次
$str1='hi,this is lily,history';
echo str_replace('is','myis',$str1,$num); //hi,thmyis myis lily,hmyistory
echo $num; //3
# 把 hi 换成 hello 再把hello换成ul
$str2='hi,this is lily,history';
$str2=str_replace('hi','hello',$str2);
echo $str2,'<br>'; //hello,thellos is lily,hellostory
echo str_replace('hello','ul',$str2); //ul,tuls is lily,ulstory
# 以上这种方法固然可以,但是太麻烦。有比较简单的办法。用数组来替换完成以上问题
# 把 hi 换成 hello 再把hello换成ul
$str3='hi,this is lily,history';
$srarch=array('hi','hello'); //hello. thellohis is lily hellostory
$replace=array('hello','ul'); //ul,tuls is lily,ulstory
echo str_replace($srarch,$replace,$str3);
/*
hi->hello
旦this 单词中有hi,这样导致也被替换了,导致this 单词错误,能不能专替换hi单词呢?如果hi是单词一部分则不替换呢?
答:如果没有一些特殊的替换需求(比如正则表达式),你应该使用该函数替换 ereg_replace() 和 preg_replace()
*/
# hi=>hello, hello=>hi
$str4='hi lily, hello jim';
echo str_replace(array('hi','hello'),array('hello','hi'),$str4);
# HI -HELLO str4= hello lily hello jim
# hello- hi str4= hi Lily hi jim
strtr — 转换指定字符
用法: strtr ( string$str
, string$from
, string$to
)
strtr ( string$str
, array$replace_pairs
)
参数:str- 待转换的 字符串 。
字符串 ("")键,那么将返回
from- 字符串 中与将要被转换的目的字符
to
相对应的源字符。
to - 字符串 中与将要被转换的字符
from
相对应的目的字符。replace_pairs - 参数
replace_pairs
可以用来取代to
和from
参数,因为它是以 array('from' => 'to', ...) 格式出现的数组。
返回值:返回转换后的 字符串 。
如果replace_pairs
中包含一个空FALSE
。
注意: 如果from
与to
长度不相等,那么多余的字符部分将被忽略。str
的长度将会和返回的值一样。
示例1: 参数 from,to
$str='hi, hello jim'; echo strtr($str,'hi','ab'); //ab, aello jbm #以单个字符来对应替换的 #h->a,h->a, i->b, i->b
- 示例2:
如果
from
与to
长度不相等,那么多余的字符部分将被忽略。
str
的长度将会和返回的值一样。
$str='hi, hello jim'; echo strtr($str,'hi','abqw'); //ab, aello jbm
- 示例3:from没找到
$str='hi, hello jim'; echo strtr($str,'asd','a'); //hi, hello jim
- 示例5: strtr ( string
$str
, array$replace_pairs
)
$str='网站。。。12345'; //#全角 echo strtr($str,array('1'=>1,'2'=>2,'3'=>3)); //网站。。。12345
示例6:如果
replace_pairs
中包含一个空 字符串 ("")键,那么将返回FALSE
。
$str='网站。。。12345'; //#全角 var_dump(strtr($str,array('1'=>1,'2'=>2,''=>3))); //bool(false)
- 示例7:大小写
$str='Aa'; echo strtr($str,array('a'=>1)); //A1