Home > php教程 > php手册 > PHP过滤字符串的具体方法介绍

PHP过滤字符串的具体方法介绍

WBOY
Release: 2016-06-13 11:08:09
Original
1179 people have browsed it

我们都知道PHP过滤字符串的的代码示例:

  1.  ?php   
  2. nl2br();   
  3. // n to br/> 
  4. addslashes(); stripslashes();   
  5. //对数据库操作时,转义特殊字符   
  6. chop();   
  7. //除去字符串右边空格  
  8. trim();   
  9. //除去字符串中所有空格  
  10. ltrim();   
  11. //除去字符串左边空格   
  12. htmlspecialchars();   
  13. //转换'$','"','','>'为相应的html实体  
  14. htmlentities();   
  15. //转换所有html标记为相应的html实体   
  16. array explode(string separator, string str);   
  17. //分割字符串  
  18. string implode(string separator, array arr);   
  19. //连接字符串  
  20. strtoupper(); strtolower();   
  21. //转换大小写  
  22. ucfirst();   
  23. //只转换第一个字符为大写   
  24. ucwords();   
  25. //转换每个words的第一个字母为大写  
  26. ?>   

希望大家通过本文介绍的PHP过滤字符串的方法能够深入掌握这一知识点。


source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template