php去除重复单词与取得所有链接 正则代码
发布:smiling 来源: PHP粉丝网 添加日期:2014-08-05 16:21:47 浏览: 评论:0
- <?php
- //返回字符串中的所有单词 $distinct=true 去除重复
- function split_en_str($str,$distinct=true) {
- preg_match_all('/([a-za-z]+)/',$str,$match);
- if ($distinct == true) {
- $match[1] = array_unique($match[1]);
- }
- sort($match[1]); //phpfensi.com
- return $match[1];
- }
- ?>
- //取得所有链接
- <?
- function get_all_url($code){
- preg_match_all('/<as+href=["|']?([^>"' ]+)["|']?s*[^>]*>([^>]+)</a>/i',$code,$arr); //osphp.com.cn
- return array('name'=>$arr[2],'url'=>$arr[1]);
- }
- ?>
Tags: php去除重复单词 正则代码
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)