if(!function_exists('getBodypics'))
{
function getBodypics($string, $num)
{
preg_match_all("/]*)s*src=('|")([^'"]+)('|")/",$string,$matches);
$imgsrc_arr = array_unique($matches[3]);
$count = count($imgsrc_arr);
$i = 0;
foreach($imgsrc_arr as $imgsrc)
{
if($i == $num) break;
$result .= "";
$i++;
}
return $result;
}
}
|
在arclist标签中调用的办法,写法如下:
[field:body function=getBodypics(@me,3)/] |



