网站地图    收藏   

主页 > 后端 > wordpress教程 >

wordpress中preg_match正则提取和替换字符串 - WordPr

来源:自学PHP网    时间:2014-11-28 23:42 作者: 阅读:

[导读] 在wordpress显示文章的时候,如果文章形式是图片的文章,需要把里面的图片部分的代码进行修改和替换,如把以下代码:imgsrc= wp-content uplo...

wordpress中preg_match正则提取和替换字符串

在wordpress显示文章的时候,如果文章形式是图片的文章,需要把里面的图片部分的代码进行修改和替换,如把以下代码:

  1. <img src="/wp-content/uploads/2014/02/hbzy1.gif" alt="hbzy" 
  2.  width="60" height="60" class="alignnone size-full wp-image-2100" /> 

输出显示的时候替换成如下代码:

  1. <div class="gif-box"> 
  2. <img src="/wp-content/uploads/2014/02/hbzy1.jpg!static" 
  3.  _src="/wp-content/uploads/2014/02/hbzy1.jpg!static"  
  4. class="alignnone size-full wp-image-2100"  
  5. tsrc="/wp-content/uploads/2014/02/hbzy1.jpg" width="60" height="60" /> 
  6. <div class="gif-loading-box"> 
  7. <i class="gif-loading" style="display:none;"></i> 
  8. <i class="gif-play"></i> 
  9. </div> 
  10. </div> 

这里是为了动态gif图片默认的时候不播放,点击才播放,这个时候需要用到preg_match和正则表达式匹配图片代码,并用str_replace进行字符串的替换和修改,代码如下:

  1. function gif_content($content) { 
  2.  $content = get_the_content (); 
  3.  $img_html = preg_match ( '/(<img[^>]+>)/i'$content$maches ); //获取img图片的html,如:<img src=".." class=".." width=""> //www.111cn.net 
  4.  $img_html = $maches [0]; 
  5.  
  6.  $img_width = preg_match ( '/width="[0-9]+"/i'$img_html$maches ); //获取图片宽度,如:width="32" 
  7.  $img_width = str_replace('='':'$maches[0]); 
  8.  $img_width = str_replace('"'''$img_width); 
  9.  $img_width = $img_width.'px'//替换成width:32px 
  10.  
  11.  $img_height = preg_match ( '/height="[0-9]+"/i'$img_html$maches ); 
  12.  $img_height = str_replace('='':'$maches[0]); 
  13.  $img_height = str_replace('"'''$img_height); 
  14.  $img_height = $img_height.'px'
  15.  
  16.  $img_name = preg_match ( '!http://.+.(?:jpe?g|png|gif)!Ui'$img_html$maches ); 
  17.  $img_name = $maches [0]; 
  18.  $img_html2 = str_replace ( 'src="' . $img_name . '"''src="' . $img_name . '!static" _src="' . $img_name . '!static' . '" tsrc="' . $img_name . '"'$img_html ); 
  19.  $img_html2 = '<div class="gif-box" style="'.$img_width.';'.$img_height.'">' . $img_html2 . '<div class="gif-loading-box"><i class="gif-loading" style="display:none;"></i><i class="gif-play"></i></div></div>';//在图片的html代码前后加上div 
  20.  
  21.  $content = str_replace ( $img_html$img_html2$content ); 
  22.  return $content
  23. add_filter('the_content''gif_content', 10);//wordpress的钩子函数 

这里是用在wordpress的文章形式中的,当文章形式是image的时候,给这个文章形式下的图片进行这样的操作,另外在index.php中需要使用如下代码:

  1. $format=get_post_format(); 
  2. if ('image'!=$format) { 
  3.  remove_filter('the_content''gif_content'); 
  4. get_template_part( 'content', get_post_format() ); 

这里要判断一下如果是其他文章形式就移除这个钩子,否则所有文章形式的图片都被进行这样的操作,本文讲的是preg_match正则提取和替换字符串,以及wordpress的文章形式.

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论