typecho获取文章有几张图片/获取文章图片数量代码
1
2
获取图片数量代码:
使用之前,请先将上面的代码添加到当前主题下的 functions.php文件里。

/*****************
 * 获取图片数量
 * @since 2016.07.01
 **/
function hui_post_imgNum($content){
   $output =
   preg_match_all("/\<img.*?src\=\"(.*?)\"[^>]*>/i", $content,$matches);
   $cnt = count( $matches[1] );
       return $cnt;
}

调用代码(在需要显示的地方):

<?php echo ''.hui_post_imgNum($this->content).'' ; ?>

标签:无

你的评论