PHP关于字符串的方法2
Posted cwjdd
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP关于字符串的方法2相关的知识,希望对你有一定的参考价值。
//替换字符串*函数为str_replace()。若是有正则表达式替换需求,可以用 ereg_replace() 和 preg_replace()。
$str1 = str_replace("red", "black", "red green yellow pink purple");
echo $str1 . "";
//格式化字符串函数为sprintf(),vprintf(),sscanf(),fscanf()。
$str = ‘99.9‘;
$result = sprintf(‘%01.2f‘, $str);
echo $result;
//分割合成字符串*。合成字符串函数为implode(),分割字符串函数为explode()。
$arr = array(‘Hello‘, ‘World!‘);
$result = implode(‘‘, $arr);
print_r($result);
$str = ‘apple,banana‘;
$result = explode(‘,‘, $str);
print_r($result);
以上是关于PHP关于字符串的方法2的主要内容,如果未能解决你的问题,请参考以下文章