当前位置:首页 > PHP教程 > 正则表达式 > 列表

php去除重复单词与取得所有链接 正则代码

发布:smiling 来源: PHP粉丝网  添加日期:2014-08-05 16:21:47 浏览: 评论:0 
  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. ?> 

Tags: php去除重复单词 正则代码

分享到: