首页 > 语言 > PHP > 正文

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

2024-09-04 11:47:29
字体:
来源:转载
供稿:网友
  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]); //Vevb.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. ?> 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表