php替换超长文本中的特殊字符的函数代码
程序员文章站
2022-07-07 08:18:40
复制代码 代码如下: function unhtml($content){ $content=htmlspecialchars($content); $content=st...
复制代码 代码如下:
function unhtml($content){
$content=htmlspecialchars($content);
$content=str_replace(chr(13),"<br>",$content);
$content=str_replace(chr(32),"<br>",$content);
$content=str_replace("[_[","<",$content);
$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 | 可选。一个变量,对替换数进行计数。 |
上一篇: 发送短信功能(C#)
推荐阅读
-
php替换超长文本中的特殊字符的函数代码
-
php中将数组转成字符串并保存到数据库中的函数代码
-
php ucwords 函数将字符串中每个单词的首字符转换为大写实现代码 words下载 word下载 sight words
-
php替换超长文本中的特殊字符的函数代码
-
php中str_replace()字符替换函数的用法介绍
-
php ucwords() 函数将字符串中每个单词的首字符转换为大写(实现代码)_PHP
-
php替换超长文本中的特殊字符的函数代码_PHP
-
php ucwords() 函数将字符串中每个单词的首字符转换为大写(实现代码)_php实例
-
php 替换字符串中第N次出现的字符代码_PHP教程
-
php中将数组转成字符串并保存到数据库中的函数代码_php技巧