15个实用的PHP正则表达式

发布时间:2015-12-28 11:02 | 人气数:1007
对于开发人员来说,正则表达式是一个非常有用的功能,它提供了查找,匹配,替换句子,单词,或者其他格式的字符串。这篇文章主要介绍了15个超实用的php正则表达式,需要的朋友可以参考下。在这篇文章里,我已经编写了15个超有用 的正则表达式,WEB开发人员都应该将它收藏到自己的工具包。

1、验证域名检验一个字符串是否是个有效域名:
$url = "http://komunitasweb.com/";
if(preg_match('/^(http|https|ftp)://([A-Z0-9][A-Z0-9_-]*(?:.[A-Z0-9][A-Z0-9_-]*)+):?(d+)?/?/i', $url)) {
    echo"Your url is ok.";
} else{
    echo
2、从一个字符串中突出某个单词,这是一个非常有用的在一个字符串中匹配出某个单词 并且突出它,非常有效的搜索结果
$text= "Sample sentence from KomunitasWeb, regex has become popular in web programming. Now we learn regex. According to wikipedia, Regular expressions (abbreviated asregex or regexp, with plural forms regexes, regexps, orregexen) are written in a formal language that can be interpreted by a regular expression processor";
$text = preg_replace("/b(regex)b/i", '<span style="background:#5fc9f6">1</span>', $text);
echo $text;

突出查询结果在你的 WordPress 博客里就像刚才我说的,上面的那段代码可以很方便的搜索出结果,而这里是一个更好的方式去执行搜索在某个WordPress的博客上打开你的文件 search.php ,然后找到 方法 the_title() 然后用下面代码替换掉它

echo $title;
Now, just before the modified line, add this code:
<?php
$title = get_the_title();
$keys = explode(" ",$s);
$title = preg_replace('/('.implode('|', $keys) .')/iu','<strong>\0</strong>',$title);
?>
Save the search.php file andopen style.css. Append the following line to it:
strong.search-excerpt { background: yellow; }
3、从HTML文档中获得全部图片,如果你曾经希望去获得某个网页上的全部图片,这段代码就是你需要的,你可以轻松的建立一个图片下载机器人
$images = array();
preg_match_all('/(img|src)=("|')[^"'>]+/i', $data, $media);
unset($data);
$data = preg_replace('/(img|src)("|'|="|=')(.*)/i',"$3",$media[0]);
foreach($data as $url){
  $info = pathinfo($url);
  if(isset($info['extension'])){
    if(($info['extension'] == 'jpg') || ($info['extension'] == 'jpeg') || ($info['extension'] == 'gif') || ($info['extension'] == 'png')){
      array_push($images, $url);
    }
  }
}
4、删除重复字母,经常重复输入字母? 这个表达式正适合.
$text = preg_replace("/s(w+s)1/i", "$1", $text);
5、删除重复的标点,功能同上,但只是面对标点,白白重复的逗号
$text = preg_replace("/.+/i", ".", $text);
6、匹配一个XML或者HTML标签,这个简单的函数有两个参数:第一个是你要匹配的标签,第二个是包含XML或HTML的变量,再强调下,这个真的很强大
functionget_tag($tag, $xml){
  $tag = preg_quote($tag);
  preg_match_all('{<'.$tag.'[^>]*>(.*?)</'.$tag.'>.'}', $xml, $matches, PREG_PATTERN_ORDER);
  return$matches[1];
}
7、匹配具有属性值的XML或者HTML标签,这个功能和上面的非常相似,但是它允许你匹配的标签内部有属性值,例如你可以轻松匹配 <div id=”header”>
functionget_tag($attr, $value, $xml, $tag=null){
  if(is_null($tag)){
    $tag = '\w+';
  }else{
    $tag = preg_quote($tag);
    $attr = preg_quote($attr);
    $value = preg_quote($value);
    $tag_regex = "/<(".$tag.")[^>]*$attr\s*=\s*"."(['\"])$value\\2[^>]*>(.*?)<\/\\1>/";
    preg_match_all($tag_regex, $xml, $matches, PREG_PATTERN_ORDER);
    return $matches[3];
  }
}


关键词:正则表达式, 正则,PHP正则