正务库

Zblog显示文章中图片数量

时间:2年前   游览量:372    标签: nbsp    quot    gt    lt    php   

在post-single.php(文章页)或post-multi.php(列表页)增加如下代码:


{php}  
$pattern="/<[img|IMG].*?src=[\'|\"](.*?(?:[\.gif|\.jpg|\.png]))[\'|\"].*?[\/]?>/";  
$content=$article->Content;  
preg_match_all($pattern,$content,$matchContent);  
$n=count($matchContent[1]);  
{/php}



通过{$n}调用即可

示例:

{php}
$pattern="/<[img|IMG].*?src=[\'|\"](.*?(?:[\.gif|\.jpg|\.png]))[\'|\"].*?[\/]?>/";
$content = $article->Content;
preg_match_all($pattern,$content,$matchContent);
$n = count($matchContent[1]);
{/php}

<h1 class="title">{$article.Title}<span style="float:right;"><small><small style="color:#E36C09;">[{$n}p]</h4></small></small></span></h1>



 Zblog显示文章中图片数量 建站教程