php替换超长文本中的特殊字符的函数代码
程序员文章站
2024-01-23 23:46:40
...
复制代码 代码如下:
PHP str_replace() 函数
定义和用法
str_replace() 函数使用一个字符串替换字符串中的另一些字符。
语法
str_replace(find,replace,string,count)
function unhtml($content){
$content=htmlspecialchars($content);
$content=str_replace(chr(13),"
",$content);
$content=str_replace(chr(32),"
",$content);
$content=str_replace("[_[","$content=str_relace(")_)",">",$content);
$content=str_replace("|_|","",$content);
rerurn trim($content);
}
PHP str_replace() 函数
定义和用法
str_replace() 函数使用一个字符串替换字符串中的另一些字符。
语法
str_replace(find,replace,string,count)
参数 | 描述 |
---|---|
find | 必需。规定要查找的值。 |
replace | 必需。规定替换 find 中的值的值。 |
string | 必需。规定被搜索的字符串。 |
count | 可选。一个变量,对替换数进行计数。 |
推荐阅读
-
php替换超长文本中的特殊字符的函数代码
-
php查找、替换字符串中http地址的代码分享
-
php中将数组转成字符串并保存到数据库中的函数代码_php技巧
-
php ucwords() 函数将字符串中每个单词的首字符转换为大写(实现代码)
-
php替换超长文本中的特殊字符的函数代码
-
php中将数组转成字符串并保存到数据库中的函数代码
-
php ucwords 函数将字符串中每个单词的首字符转换为大写实现代码 words下载 word下载 sight words
-
php替换超长文本中的特殊字符的函数代码
-
php中str_replace()字符替换函数的用法介绍
-
php ucwords() 函数将字符串中每个单词的首字符转换为大写(实现代码)_PHP