123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <?php
- /*
- * 应该写一个公共组件
- * 这个组件代码 虽然与现有的代码功能 有点重复
- * 但不影响 现有代码变量即可 不管那么多
- *
- */
- //判断区域
- $sql2 = '';
- $domain = request()->domain();
- //https://
- $domain = str_replace('https://', '', $domain);
- $domain = explode('.',$domain);
- //var_dump($domain);
- $site = $domain[0];
- //var_dump($site);
- if(!empty($site) && $site != 'zc' && $site != 'www'){
- //判定为二级域名
- $sql2 = "SELECT id,name FROM ey_citysite WHERE domain = '".$site."'";
- }else{
- $site = 'www';
- }
-
- //处理城市参数
- $sql3 = '';
- $route_param = request()->route();
- if(!empty($route_param['site'])){
- $city_domain = $route_param['site'];
- $sql3 = "SELECT id,name FROM ey_citysite WHERE domain = '".$city_domain."'";
- }else{
- $city_domain = 'none';
- }
- $is_area_data = 0;
- $where = '';
- ?>
- {eyou:if condition='($sql2 !== "")'}
- {eyou:sql sql='$sql2' cachetime='3600' id='area'}
- {eyou:php}
- $area_name = ''.$area['name'].'';
- $area_id = ''.$area['id'].'';
- $area_where = "province_id=".$area_id." ";
- {/eyou:php}
- {/eyou:sql}
- {/eyou:if}
-
- {eyou:if condition='($sql3 !== "")'}
- {eyou:sql sql='$sql3' cachetime='3600' id='area'}
- {eyou:php}
- $city_name = ''.$area['name'].'';
- $city_id = ''.$area['id'].'';
- $area_where = "province_id=".$area_id." and city_id=".$city_id." ";
- {/eyou:php}
- {/eyou:sql}
- {/eyou:if}
-
- {eyou:if condition='($sql2 !== "")'}
- {eyou:php}
- //针对常见问题
- $sql4 = "SELECT count(*) as num FROM ey_archives WHERE ".$area_where." and typeid=111 and is_del=0 and status=1 and arcrank=0 ";
- {/eyou:php}
- {eyou:sql sql='$sql4' cachetime='3600' id='area_data'}
- {eyou:php}
- if((int)$area_data['num'] > 0){
- //存在区域数据
- $is_area_data = 1;
- }
- {/eyou:php}
- {/eyou:sql}
- {/eyou:if}
|