php常用字符串处理函数实例分析

yipeiwu_com5年前PHP代码库

本文实例讲述了php常用字符串处理函数。分享给大家供大家参考。具体分析如下:

这里只提供几个简单常用的函数:
chop执行去除空格处理,get_html_translation_table返回转化列表到变量,定义包括HTML编码的字符串htmlentities,htmlspecialchars_decode 定义包含HTML特殊字符的字符串,nl2br quotemeta rtrim等.

定义和用法:chop() 函数从字符串的末端开始删除空白字符或其他预定义字符,该函数的 rtrim() 函数的别名.

语法:chop(string,charlist),代码如下:

复制代码 代码如下:
$str="i'm a   teacher  ";          //定义字符串
$result=chop($str);           //执行去除空格处理
echo $result;            //输出结果

定义和用法:get_html_translation_table() 函数返回被 htmlentities() 和 htmlspecialchars() 函数使用的翻译表.

语法:get_html_translation_table(function,quotestyle),代码如下:

复制代码 代码如下:

$trans=get_html_translation_table(html_entities);    //返回转化列表到变量
print_r($trans);            //输出转换表
$str="hallo & <frau> & krmer";         //定义字符串
$encoded=strtr($str,$trans);         //查找字符
echo $encoded;           //输出结果
//
 
$str="a 'quote' is <b>bold</b>";       //定义包括html编码的字符串
echo htmlentities($str);        //输出经过处理的字符串
echo htmlentities($str, ent_quotes);     //加上可选参数后的输出结果
 
//
$str='<p>this -> "</p>';        //定义包含html特殊字符的字符串
echo htmlspecialchars_decode($str);     //输出转换后的内容
echo "<br>";
echo htmlspecialchars_decode($str,ent_noquotes);  //不对引号进行编码的输出结果
 
//
 
$str="cat isn't n dog";      //定义包含换行符的字符串
$result=nl2br($str);       //执行转换操作
echo $result;        //输出转换后的结果
 
//
 
$str="hello world.(can you hear me?)";      //定义包含元字符的字符串
$result=quotemeta($str);         //执行转换操作
echo $result;           //输出转换后的结果
//
 
$str="hello world  ";          //定义末尾有空格的字符串
$result=rtrim($str);          //执行转换操作
echo $result;           //输出转换后的结果

希望本文所述对大家的php程序设计有所帮助。

相关文章

PHP中Notice错误常见解决方法

对于初学者,肯定会遇到不同的错误提示,比如:警告,致命,等等,其中NOTICE错误等级最低,页面中,好多类似 Notice: Use of undefined constant titl...

PHP中call_user_func_array回调函数的用法示例

call_user_func_array call_user_func_array — 调用回调函数,并把一个数组参数作为回调函数的参数 mixed call_user_func_a...

php字符串分割函数explode的实例代码

array explode (string $separator, string $string [, int $limit]) 该函数有3个参数,第一个参数$separator设置一个...

用PHP将网址字符串转换成超链接(网址或email)

复制代码 代码如下: function makeClickableLinks($text) { $text = eregi_replace('(((f|ht){1}tp://)[-a-z...

php版微信支付api.mch.weixin.qq.com域名解析慢原因与解决方法

本文实例讲述了php版微信支付api.mch.weixin.qq.com域名解析慢原因与解决方法。分享给大家供大家参考,具体如下: 微信支付api.mch.weixin.qq.com域名...