File: /www/wwwroot/fuwufei.xxlht.com1/application/api/controller/Other.php
<?php
/**
* 易优CMS
* ============================================================================
* 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
* 网站地址: http://www.eyoucms.com
* ----------------------------------------------------------------------------
* 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
* ============================================================================
* Author: 小虎哥 <1105415366@qq.com>
* Date: 2018-4-3
*/
namespace app\api\controller;
class Other extends Base
{
/*
* 初始化操作
*/
public function _initialize() {
parent::_initialize();
session('user'); // 哪里用到 session_id() , 哪个文件就加上这行代码
}
/**
* 广告位js
*/
public function other_show()
{
$pid = input('pid/d',1);
$row = input('row/d',1);
$where = array(
'pid'=>$pid,
'status'=>1,
'start_time'=>array('lt', getTime()),
);
$ad = M("ad")->where($where)
->where('end_time', ['>', getTime()], ['=', 0], 'or')
->order("sort_order asc")
->limit($row)
->cache(true,EYOUCMS_CACHE_TIME, 'ad')
->select();
$this->assign('ad',$ad);
return $this->fetch();
}
}