php中的字符串常用函数 str_replace 字符串替换,替换全角空格

 <?php
$str = "hello world!";
echo(str_replace(array('hello', 'world'), array('tom', 'class'), $str);
//输出结果:tom class! $str2 = "hello world!";
echo(str_replace('hello', 'cat', $str2);
//输出结果:cat world!

第3行:数组依次对应替换

第7行:字符串部分替换

preg_replace('/[\s| ]+/', '', $a); // 去除全角空格。

上一篇:ios8消息快捷处理——暂无输入框


下一篇:php中的字符串常用函数(五) explode 妙用