VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • php去除重复单词与取得所有链接 正则代码

  1. <?php 
  2. //返回字符串中的所有单词 $distinct=true 去除重复 
  3. function split_en_str($str,$distinct=true) {  
  4. preg_match_all('/([a-za-z]+)/',$str,$match); 
  5.  
  6.  
  7.         if ($distinct == true) {  
  8. $match[1] = array_unique($match[1]);  
  9.         }  
  10. sort($match[1]); //phpfensi.com  
  11.         return $match[1];  
  12. }  
  13. ?> 
  14.  
  15. //取得所有链接 
  16.  
  17. <?  
  18. function get_all_url($code){   
  19. preg_match_all('/<as+href=["|']?([^>"' ]+)["|']?s*[^>]*>([^>]+)</a>/i',$code,$arr);  //osphp.com.cn  
  20.         return array('name'=>$arr[2],'url'=>$arr[1]);   
  21. }  
  22. ?> 
  23.  

出处:http://www.phpfensi.com/php/20140805/4215.html


相关教程