今天给客户做网站,发现eyoucms调用代码有个bug,使用adv标签获取不到广告描述,于是就决定动手写一个扩展函数,以便自己使用。
代码如下:
//根据广告id获取广告描述
if(!function_exists('get_pid_intro')){
function get_pid_intro($pid = '')
{
$ad_where = [
'id'=>$pid
];
$ad = M('ad_position')->where($ad_where)->find();
$intro = $ad['intro'];
$intro = htmlspecialchars_decode($intro);
return $intro;
}
}
备注:全局函数,非常方便,希望能够帮助到大家。