创建自定义函数
打开
/include/extend.func.php
文件(注:这个文件就是系统预留的自定义函数接口文件,主要用于二
次开发用的。如果你是老版本,默认没有这个文件,自己创建一个
PHP
文件即可),在最下面的
?>
上一
行加入以下函数代码:(如果结尾没有
?>
那就直接在最下面添加)
//
图片集自定义图片字段调用
function GetOneImgUrl($img,$ftype=1){
if($img <> ''){
$dtp = new DedeTagParse();
$dtp->LoadSource($img);
if(is_array($dtp->CTags)){
foreach($dtp->CTags as $ctag){
if($ctag->GetName()=='img'){
$width = $ctag->GetAtt('width');
$height = $ctag->GetAtt('height');
$imgurl = trim($ctag->GetInnerText());
$img = '';
if($imgurl != ''){
if($ftype==1){
$img .= $imgurl;
}
else{
//
输出图片的格式
$img .= '';
}
}
}
}
}