<div class="jb51code">
<pre class="brush:PHP;">
<?PHP
$temp=mt_rand(1,4);
$pattern="/<[img|IMG].?src=[\'|\"](.?(?:[.gif|.jpg|.png]))[\'|\"].*?[\/]?>/";
$content = $article->Content; //文章内容
preg_match_all($pattern,$content,$matchContent);
if(isset($matchContent[1][0])){
$temp=$matchContent[1][0];
}else{
$temp="images/random/$temp.jpg";//需要在相应位置放置4张jpg的文件,名称为1,2,3,4
}
?>