博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ECSHOP 添加广告
阅读量:4881 次
发布时间:2019-06-11

本文共 1719 字,大约阅读时间需要 5 分钟。

 

17:19:21
 
function get_adv($type,$id) {  $sql = "select ap.ad_width,ap.ad_height,ad.ad_name,ad.ad_code,ad.ad_link from ".$GLOBALS['ecs']->table('ad_position')." as ap left join ".$GLOBALS['ecs']->table('ad')." as ad on ad.position_id = ap.position_id where ad.ad_name='".$type."_".$id."' and ad.media_type=0 and UNIX_TIMESTAMP()>ad.start_time and UNIX_TIMESTAMP()<ad.end_time and ad.enabled=1";      $res = $GLOBALS['db']->getRow($sql);        if($res)                              return  "<a href='".$res['ad_link']."' target='_blank'><img src='data/afficheimg/".$res['ad_code']."' width='".$res['ad_width']."' height='".$res['ad_height']."' /></a>";  else  { return "";   }   } /*  *获取某广告位名称的广告列表  */ function get_cat_advlist($position) {    $arr=array();    $sql = "select ap.ad_width,ap.ad_height,ad.ad_name,ad.ad_code,ad.ad_link,ad.ad_id from ".$GLOBALS['ecs']->table('ad_position')." as ap left join ".$GLOBALS['ecs']->table('ad')." as ad on ad.position_id = ap.position_id where ap.position_name='".$position."' and ad.media_type=0 and UNIX_TIMESTAMP()>ad.start_time and UNIX_TIMESTAMP()<ad.end_time and ad.enabled=1";      $res = $GLOBALS['db']->getAll($sql);  foreach($res as $idx => $row)  {     $arr[$row['ad_id']]['name'] = $row['ad_name']; $arr[$row['ad_id']]['content'] = "<a href='".$row['ad_link']."' target='_blank'><img src='data/afficheimg/".$row['ad_code']."' width='".$row['ad_width']."' height='".$row['ad_height']."' /></a>";  }  return $arr; }
   17:19:55
 
<?php echo  get_adv("ad","1");?></div>
   17:30:19
 
  function fetch_str($source)     {         if (!defined('ECS_ADMIN'))         {             $source = $this->smarty_prefilter_preCompile($source);         }
        return preg_replace("/{([^\}\{\n]*)}/e", "\$this->select('\\1');", $source);     }

 

转载于:https://www.cnblogs.com/shichangyi/archive/2013/01/12/2857383.html

你可能感兴趣的文章
CSS颜色
查看>>
前端自动化之(一)—浏览器自动实时刷新
查看>>
Unity 摄像头竖屏预览显示的问题
查看>>
HDU 5115 Dire Wolf(区间dp)
查看>>
C# 程序配置文件的操作(ConfigurationManager的使用)
查看>>
Springmvc完成分页的功能
查看>>
JComboBox实现当前所选项功能和JFrame窗口释放资源的dispose()方法
查看>>
tp 引入phpexcel 进行单表格的导入,在线浏览
查看>>
jsp基础速成精华讲解
查看>>
URL to Blob
查看>>
bzoj 3643: Phi的反函数
查看>>
BizTalk Server 2009 Beta初体验
查看>>
HTML中解决双击会选中文本的问题
查看>>
3.单例模式-singleton
查看>>
说说Vue.js的v-for
查看>>
Java第四次作业
查看>>
屏幕录像软件 (Desktop Screen Recorder)
查看>>
【codevs1069】关押罪犯
查看>>
iOS 设计模式之单例
查看>>
POJ 1664 放苹果
查看>>