php语言如何把字符中的标点去掉
$a="你你你,我我我,他他他,她她她"怎么通过处理变成$a="你你你我我我他他他她她她"在线等,ps,那个逗号是英文的逗号...
$a = "你你你,我我我,他他他,她她她"
怎么通过处理变成
$a = "你你你我我我他他他她她她"
在线等,ps,那个逗号是英文的逗号 展开
怎么通过处理变成
$a = "你你你我我我他他他她她她"
在线等,ps,那个逗号是英文的逗号 展开
1个回答
展开全部
直接上代码
<?php
/* 不能产生出期望的结果 */
$num = 4;
$string = "This string has four words.";
$string = ereg_replace('four', $num, $string);
echo $string; /* Output: 'This string has words.' */
/* 本例工作正常 */
$num = '4';
$string = "This string has four words.";
$string = ereg_replace('four', $num, $string);
echo $string; /* Output: 'This string has 4 words.' */
?>
string ereg_replace
( string $pattern
, string $replacement
, string $string
)
本函数在 string 中扫描与
pattern 匹配的部分,并将其替换为
replacement。
<?php
/* 不能产生出期望的结果 */
$num = 4;
$string = "This string has four words.";
$string = ereg_replace('four', $num, $string);
echo $string; /* Output: 'This string has words.' */
/* 本例工作正常 */
$num = '4';
$string = "This string has four words.";
$string = ereg_replace('four', $num, $string);
echo $string; /* Output: 'This string has 4 words.' */
?>
string ereg_replace
( string $pattern
, string $replacement
, string $string
)
本函数在 string 中扫描与
pattern 匹配的部分,并将其替换为
replacement。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |