php怎么替换中文冒号

php怎么替换中文冒号,第1张

php怎么替换中文冒号

php替换中文冒号的方法:1、使用str_ireplace()函数,语法“str_ireplace(中文冒号, 替换值, $str)”;2、使用str_replace()函数,语法“str_replace(中文冒号,替换值,$str)”。

本教程 *** 作环境:windows7系统、PHP7.1版、DELL G3电脑

在php中,可以利用str_ireplace() 和 str_replace() 函数来替换字符串中的中文冒号。

str_ireplace() 和 str_replace 使用新的字符串替换原来字符串中指定的特定字符串,str_replace 区分大小写,str_ireplace() 不区分大小写,两者语法相似。

str_ireplace() 的语法如下:

mixed str_ireplace ( mixed $search , mixed $replace , mixed $subject [, int &$count ] )
mixed str_replace ( mixed $search , mixed $replace , mixed $subject [, int &$count ] )

这两个函数返回一个字符串或者数组。该字符串或数组是将 subject 中全部的 search 用 replace 替换之后的结果。参数 count 表示执行替换的次数。

使用示例如下:

<?php  
header("content-type:text/html;charset=utf-8");
$str = 'hello:world:hello:world';
echo "原字符串: ".$str."<br>";
$replace = '-';
$search = ':';
echo str_replace($search, $replace, $str)."<br>";
echo str_ireplace($search, $replace, $str);
?>

推荐学习:《PHP视频教程》

以上就是php怎么替换中文冒号的详细内容,

欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/langs/679833.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-20
下一篇 2022-04-20

发表评论

登录后才能评论

评论列表(0条)

保存