首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴小轩88的代码贴全部
function makeTree()
        {
            $areas = $this->arr();
            $areaTree = [];
            foreach ($areas as $id=>$area)
            {
                if(isset($areas[$area["pid"]]))
                {
                    $areas[$area["pid"]]["children"][] = &$areas[$id];
                } 
                else 
                {
......................
阅读全部 | 2020年9月2日 16:07
$add_cond['open_id'] = 'odnyQ5_lyKmYCcWirvxcQxdkRx4I';//$this->userinfo['openid'];
        $add_cond['spot_open_id'] = 'odnyQ54EwmeGasMU8cAVyCHkTBw8';//$_POST['spot_open_id'];
        $spot = M('activity_like')
        ->where(['spot_open_id'=>$add_cond['spot_open_id'],'open_id'=>$add_cond['open_id']])
        ->find();
        if ($spot) 
        {
          $this->ajaxReturn(['status'=>0,'info'=>'已点赞,请不要重复']);
        }
$add_cond['like_status'] = 1;
$add_liked = M('activity_like')->add($add_cond);
if ($add_liked) 
......................
阅读全部 | 2019年12月16日 14:22
1
小轩88