首先在/include/extend.func.PHP增加以下方法:
GetOne("SELECT channel.addtable FROM #@__channeltype AS channel LEFT JOIN #@__archives AS arc ON arc.channel=channel.id
WHERE arc.id='{$arcid[1]}'");//获取模型类型表名
$redirecturl = $dsql->GetOne("SELECT redirecturl FROM {$addtable['addtable']} WHERE aid = '{$arcid[1]}'");//动态获取表名,并查询redirecturl字段数据
if(!empty($redirecturl['redirecturl'])){
return $redirecturl['redirecturl'];//返回redirecturl字段数据
}else{
return $arcurl;
}
}else{//非动态地址直接返回原地址
return $arcurl;
}
}
在模板上的使用方式有两种形式:
PHP;">
#第一种:
[field:arcurl function='arcurlHtml(@me)'/]
#第二种:
[field:id runPHP='yes'] $id=@me;@me='';$url=GetOneArchive($id);@me=$url['arcurl'];@me=arcurlHtml(@me);[/field:id]
完整调用:
原文链接:https://www.f2er.com/php/18614.html