各类知识收集,PHP技术分享与解决方案各类知识收集,PHP技术分享与解决方案各类知识收集,PHP技术分享与解决方案

Str Tom,为分享PHP技术和解决方案,贡献一份自己的力量!
收藏本站(不迷路),每天更新好文章!
当前位置:首页 > CMS教程 > eyoucms

eyoucms开发之快速函数(根据广告id获取广告描述)

管理员 2023-09-06
eyoucms
423

今天给客户做网站,发现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;

}

}

备注:全局函数,非常方便,希望能够帮助到大家。

相关推荐

扫码关注

qrcode

QQ交谈

回顶部