2015-12-17学习笔记

15 个实用的 PHP 正则表达式

验证域名检验一个字符串是不是个有效域名php

  1. $url = "http://komunitasweb.com/"; 
  2. if (preg_match('/^(http|https|ftp)://([A-Z0-9][A-Z0-9_-]*(?:.[A-Z0-9][A-Z0-9_-]*)+):?(d+)?/?/i', $url)) { 
  3.   echo "Your url is ok."; 
  4. else { 
  5.   echo "Wrong url."; 

从一个字符串中 突出某个单词css

这是一个很是有用的在一个字符串中匹配出某个单词 而且突出它,很是有效的搜索结果html

 

  1. $text = "Sample sentence from KomunitasWeb, regex has become popular in web programming. Now we learn regex. According to wikipedia, Regular expressions (abbreviated as regex or  
  2.  
  3. regexp, with plural forms regexes, regexps, or regexen) are written in a formal language that can be interpreted by a regular expression processor";  
  4. $text = preg_replace("/b(regex)b/i", '<span style="background:#5fc9f6">1</span>', $text);  
  5. echo $text; 

 

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

 

  1. echo $title;  
  2.  
  3. Now, just before the modified line, add this code:  
  4.  
  5. <php  
  6.   $title   = get_the_title();  
  7.   $keys= explode(" ",$s);  
  8.   $title   = preg_replace('/('.implode('|', $keys) .')/iu',  
  9.     '<strong>\0</strong>',  
  10.     $title);  
  11. >  
  12.  
  13. Save the search.php file and open style.css. Append the following line to it:  
  14.  
  15. strong.search-excerpt { background: yellow; }

从HTML文档中得到所有图片正则表达式

若是你曾经但愿去得到某个网页上的所有图片,这段代码就是你须要的,你能够轻松的创建一个图片下载机器人express

  1. $images = array(); 
  2. preg_match_all('/(img|src)=("|')[^"'>]+/i', $data, $media); 
  3. unset($data); 
  4. $data=preg_replace('/(img|src)("|'|="|=')(.*)/i',"$3",$media[0]); 
  5. foreach($data as $url) 
  6.   $info = pathinfo($url); 
  7.   if (isset($info['extension'])) 
  8.   { 
  9.     if (($info['extension'] == 'jpg') || 
  10.     ($info['extension'] == 'jpeg') || 
  11.     ($info['extension'] == 'gif') || 
  12.     ($info['extension'] == 'png')) 
  13.     array_push($images, $url); 
  14.   } 

删除重复字母apache

常常重复输入字母? 这个表达式正适合.服务器

  1. $text = preg_replace("/s(w+s)1/i", "$1", $text); 

删除重复的标点dom

功能同上,但只是面对标点,白白重复的逗号函数

  1. $text = preg_replace("/.+/i", ".", $text); 

匹配一个XML或者HTML标签

这个简单的函数有两个参数:第一个是你要匹配的标签,第二个是包含XML或HTML的变量,再强调下,这个真的很强大

 

  1. function get_tag( $tag, $xml ) { 
  2. $tag = preg_quote($tag); 
  3. preg_match_all('{<'.$tag.'[^>]*>(.*?)</'.$tag.'>.'}', 
  4.           $xml, 
  5.           $matches, 
  6.           PREG_PATTERN_ORDER); 
  7.  
  8. return $matches[1]; 

匹配具备属性值的XML或者HTML标签

这个功能和上面的很是类似,可是它容许你匹配的标签内部有属性值,例如你能够轻松匹配 <div id=”header”>

 

  1. function get_tag( $attr, $value, $xml, $tag=null ) { 
  2. if( is_null($tag) ) 
  3.   $tag = '\w+'; 
  4. else 
  5.   $tag = preg_quote($tag); 
  6.  
  7. $attr = preg_quote($attr); 
  8. $value = preg_quote($value); 
  9.  
  10. $tag_regex = "/<(".$tag.")[^>]*$attr\s*=\s*". 
  11.         "(['\"])$value\\2[^>]*>(.*?)<\/\\1>/" 
  12.  
  13. preg_match_all($tag_regex, 
  14.          $xml, 
  15.          $matches, 
  16.          PREG_PATTERN_ORDER); 
  17.  
  18. return $matches[3]; 

匹配十六进制颜色值

web开发者的另外一个有趣的工具,它容许你匹配和验证十六进制颜色值.

  1. $string = "#555555"; 
  2. if (preg_match('/^#(?:(?:[a-fd]{3}){1,2})$/i', $string)) { 
  3. echo "example 6 successful."; 

查找页面 title

这段代码方便查找和打印 网页 <title> 和</title> 之间的内容

 

  1. $fp = fopen("http://www.catswhocode.com/blog","r"); 
  2. while (!feof($fp) ){ 
  3.   $page .= fgets($fp, 4096); 
  4.  
  5. $titre = eregi("<title>(.*)</title>",$page,$regs); 
  6. echo $regs[1]; 
  7. fclose($fp); 

解释 Apache 日志

大多数网站使用的都是著名的Apache服务器,若是你的网站也是,那么使用PHP正则表达式解析 apache 服务器日志 怎么样?

 

  1. //Logs: Apache web server 
  2. //Successful hits to HTML files only. Useful for counting the number of page views. 
  3. '^((?#client IP or domain name)S+)s+((?#basic authentication)S+s+S+)s+[((?#date and time)[^]]+)]s+"(?:GET|POST|HEAD) ((?#file)/[^ ?"]+?.html?)??((?#parameters)[^ ?"]+)? HTTP/[0-9.]+"s+(?#status code)200s+((?#bytes transferred)[-0-9]+)s+"((?#referrer)[^"]*)"s+"((?#user agent)[^"]*)"$' 
  4.  
  5. //Logs: Apache web server 
  6. //404 errors only 
  7. '^((?#client IP or domain name)S+)s+((?#basic authentication)S+s+S+)s+[((?#date and time)[^]]+)]s+"(?:GET|POST|HEAD) ((?#file)[^ ?"]+)??((?#parameters)[^ ?"]+)? HTTP/[0-9.]+"s+(?#status code)404s+((?#bytes transferred)[-0-9]+)s+"((?#referrer)[^"]*)"s+"((?#user agent)[^"]*)"$' 

使用智能引号代替双引号

若是你是一个印刷爱好者,你将喜欢这个容许用智能引号代替双引号的正则表达式,这个正则被WORDPRESS在其内容上使用

  1. preg_replace('B"b([^"x84x93x94rn]+)b"B', '?1?', $text); 

检验密码的复杂度

这个正则表达式将检测输入的内容是否包含6个或更多字母,数字,下划线和连字符. 输入必须包含至少一个大写字母,一个小写字母和一个数字

'A(?=[-_a-zA-Z0-9]*?[A-Z])(?=[-_a-zA-Z0-9]*?[a-z])(?=[-_a-zA-Z0-9]*?[0-9])[-_a-zA-Z0-9]{6,}z'

WordPress: 使用正则得到帖子上的图片

我知道不少人是WORDPRESS的使用者,你可能会喜欢而且愿意使用 那些从帖子的内容检索下来的图像代码。使用这个代码在你的BLOG只须要复制下面代码到你的某个文件里

 

  1. <php if (have_posts()) : ?> 
  2. <php while (have_posts()) : the_post(); ?> 
  3.  
  4. <php 
  5. $szPostContent = $post->post_content; 
  6. $szSearchPattern = '~<img [^>]* />~'; 
  7.  
  8. // Run preg_match_all to grab all the images and save the results in $aPics 
  9. preg_match_all( $szSearchPattern, $szPostContent, $aPics ); 
  10.  
  11. // Check to see if we have at least 1 image 
  12. $iNumberOfPics = count($aPics[0]); 
  13.  
  14. if ( $iNumberOfPics > 0 ) { 
  15.    // Now here you would do whatever you need to do with the images 
  16.    // For this example the images are just displayed 
  17.    for ( $i=0; $i < $iNumberOfPics ; $i++ ) { 
  18.      echo $aPics[0][$i]; 
  19.    }; 
  20. }; 
  21.  
  22. endwhile; 
  23. endif; 

自动生成笑脸图案

被WordPress使用的另外一个方法, 这段代码可以使你把图像自动更换一个笑脸符号

  1. $texte='A text with a smiley '; 
  2. echo str_replace(':-)','<img src="smileys/souriant.png">',$texte); 

移除图片的连接

 

  1. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
  2. <php 
  3.   $str = ' 
  4.     <a href="http://www.jobbole.com/">jobbole</a>其余字符 
  5.     <a href="http://www.sohu.com/">sohu</a> 
  6.     <a href="http://www.sohu.com/"><img src="http://www.fashion-press.net/img/news/3176/mot_06.jpg" /></a> 
  7.     <br>'; 
  8.  
  9.   //echo preg_replace("/(<a.*?>)(<img.*?>)(<\/a>)/", '$2', $str);  
  10.   echo preg_replace("/(<a.*?>)(<img.*?>)(<\/a>)/", '\2', $str);  
相关文章
相关标签/搜索