网站地图    收藏   

主页 > php专栏 > php函数大全 >

php中常用字符串处理函数 - php函数

来源:自学PHP网    时间:2014-11-25 00:26 作者: 阅读:

[导读] 下面只提供几个简单常用的函数,chop执行去除空格处理,get_html_translation_table返回转化列表到变量,定义包括HTML编码的字符串htmlentities,htmlspecialchars_decode 定义包含HTML特殊字符的字符......

php中常用字符串处理函数

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

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

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

  1. $str="i'm a   teacher  ";          //定义字符串 
  2. $result=chop($str);           //执行去除空格处理 
  3. echo $result;            //输出结果 

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

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

  1. /*/ 
  2. $trans=get_html_translation_table(html_entities);    //返回转化列表到变量 
  3. print_r($trans);            //输出转换表 
  4. $str="hallo & <frau> & krmer";         //定义字符串 
  5. $encoded=strtr($str,$trans);         //查找字符 
  6. echo $encoded;           //输出结果 
  7. // 
  8.  
  9. $str="a 'quote' is <b>bold</b>";       //定义包括html编码的字符串 
  10. echo htmlentities($str);        //输出经过处理的字符串 
  11. echo htmlentities($str, ent_quotes);     //加上可选参数后的输出结果 
  12.  
  13. // 
  14. $str='<p>this -&gt; "</p>';        //定义包含html特殊字符的字符串 
  15. echo htmlspecialchars_decode($str);     //输出转换后的内容 
  16. echo "<br>"
  17. echo htmlspecialchars_decode($str,ent_noquotes);  //不对引号进行编码的输出结果 
  18.  
  19. // 
  20.  
  21. $str="cat isn't n dog";      //定义包含换行符的字符串 
  22. $result=nl2br($str);       //执行转换操作 
  23. echo $result;        //输出转换后的结果 
  24.  
  25. // 
  26.  
  27. $str="hello world.(can you hear me?)";      //定义包含元字符的字符串 
  28. $result=quotemeta($str);         //执行转换操作 
  29. echo $result;           //输出转换后的结果 
  30. //开源代码phpfensi.com 
  31. // 
  32.  
  33. $str="hello world  ";          //定义末尾有空格的字符串 
  34. $result=rtrim($str);          //执行转换操作 
  35. echo $result;           //输出转换后的结果

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论