No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

City.php 23KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599
  1. <?php
  2. /*
  3. * @Author: ZMH
  4. * @Email: zmhwork@qq.com
  5. * @Date: 2024-02-06 18:19:10
  6. * @LastEditTime: 2024-02-18 22:24:19
  7. * @LastEditors: xiaohai zmhwork@qq.com
  8. * @FilePath: \eyoucms\application\home\controller\City.php
  9. *
  10. * @Description: 城市控制器
  11. */
  12. namespace app\home\controller;
  13. use think\Db;
  14. use think\Verify;
  15. class City extends Base
  16. {
  17. // 模型标识
  18. public $nid = '';
  19. // 模型ID
  20. public $channel = '';
  21. public function _initialize()
  22. {
  23. parent::_initialize();
  24. }
  25. public function _empty($name)
  26. {
  27. return $this->city($name);
  28. }
  29. protected function city($name)
  30. {
  31. //和$name这个城市相关的处理
  32. return '当前城市' . $name;
  33. // return action('home/Lists/index', $tid);
  34. }
  35. public function index($city)
  36. {
  37. // var_dump($city); exit(0);
  38. return action('home/Lists/index', 139);
  39. }
  40. public function view($city, $aid = 0)
  41. {
  42. return action('home/View/index', $aid);
  43. }
  44. /**
  45. * 省级首页
  46. */
  47. public function provincial($tid = '')
  48. {
  49. $param = input('param.');
  50. /*获取当前栏目ID以及模型ID*/
  51. $page_tmp = input('param.page/s', 0);
  52. if (empty($tid) || !is_numeric($page_tmp)) {
  53. to_index("404");
  54. }
  55. $map = [];
  56. /*URL上参数的校验*/
  57. /* $seo_pseudo = config('ey_config.seo_pseudo');
  58. $url_screen_var = config('global.url_screen_var');
  59. if (!isset($param[$url_screen_var]) && 3 == $seo_pseudo)
  60. {
  61. if (stristr($this->request->url(), '&c=Lists&a=index&')) {
  62. to_index();
  63. }
  64. $map = array('a.dirname'=>$tid);
  65. }
  66. else if (isset($param[$url_screen_var]) || 1 == $seo_pseudo || (2 == $seo_pseudo && isMobile()))
  67. {
  68. $seo_dynamic_format = config('ey_config.seo_dynamic_format');
  69. if (1 == $seo_pseudo && 2 == $seo_dynamic_format && stristr($this->request->url(), '&c=Lists&a=index&')) {
  70. to_index();
  71. } else if (!is_numeric($tid) || strval(intval($tid)) !== strval($tid)) {
  72. to_index();
  73. }
  74. $map = array('a.id'=>$tid);
  75. }else if (2 == $seo_pseudo){ // 生成静态页面代码
  76. $map = array('a.id'=>$tid);
  77. }*/
  78. /*--end*/
  79. if (!is_numeric($tid) || strval(intval($tid)) !== strval($tid)) {
  80. $map = array('a.dirname' => $tid);
  81. } else {
  82. $map = array('a.id' => intval($tid));
  83. }
  84. $map['a.is_del'] = 0; // 回收站功能
  85. $map['a.lang'] = $this->home_lang; // 多语言
  86. $row = Db::name('arctype')->field('a.id, a.current_channel, b.nid')
  87. ->alias('a')
  88. ->join('__CHANNELTYPE__ b', 'a.current_channel = b.id', 'LEFT')
  89. ->where($map)
  90. ->find();
  91. if (empty($row)) {
  92. to_index("404");
  93. }
  94. $tid = $row['id'];
  95. $this->nid = $row['nid'];
  96. $this->channel = intval($row['current_channel']);
  97. /*--end*/
  98. $result = $this->logic($tid); // 模型对应逻辑
  99. $eyou = array(
  100. 'field' => $result,
  101. );
  102. $this->eyou = array_merge($this->eyou, $eyou);
  103. $this->assign('eyou', $this->eyou);
  104. /*模板文件*/
  105. // $viewfile = !empty($result['templist'])
  106. // ? str_replace('.' . $this->view_suffix, '', $result['templist'])
  107. // : 'lists_' . $this->nid;
  108. $viewfile = 'index_1';
  109. /*--end*/
  110. if (config('city_switch_on') && !empty($this->home_site)) { // 多站点内置模板文件名
  111. $viewfilepath = TEMPLATE_PATH . $this->theme_style_path . DS . $this->home_site;
  112. $viewfilepath2 = TEMPLATE_PATH . $this->theme_style_path . DS . 'city' . DS . $this->home_site;
  113. if (!empty($this->eyou['global']['site_template'])) {
  114. if (file_exists($viewfilepath2)) {
  115. $viewfile = "city/{$this->home_site}/{$viewfile}";
  116. } else if (file_exists($viewfilepath)) {
  117. $viewfile = "{$this->home_site}/{$viewfile}";
  118. }
  119. }
  120. } else if (config('lang_switch_on') && !empty($this->home_lang)) { // 多语言内置模板文件名
  121. $viewfilepath = TEMPLATE_PATH . $this->theme_style_path . DS . $viewfile . "_{$this->home_lang}." . $this->view_suffix;
  122. if (file_exists($viewfilepath)) {
  123. $viewfile .= "_{$this->home_lang}";
  124. }
  125. }
  126. $users_id = (int)session('users_id');
  127. $emptyhtml = $this->check_arcrank($this->eyou['field'], $users_id);
  128. // /*模板文件*/
  129. // $viewfile = $filename = !empty($result['templist'])
  130. // ? str_replace('.'.$this->view_suffix, '',$result['templist'])
  131. // : 'lists_'.$this->nid;
  132. // /*--end*/
  133. // /*每个栏目内置模板文件名*/
  134. // $viewfilepath = TEMPLATE_PATH.$this->theme_style_path.DS.$filename."_{$result['id']}.".$this->view_suffix;
  135. // if (file_exists($viewfilepath)) {
  136. // $viewfile = $filename."_{$result['id']}";
  137. // }
  138. // /*--end*/
  139. // /*多语言内置模板文件名*/
  140. // if (!empty($this->home_lang)) {
  141. // $viewfilepath = TEMPLATE_PATH.$this->theme_style_path.DS.$filename."_{$this->home_lang}.".$this->view_suffix;
  142. // if (file_exists($viewfilepath)) {
  143. // $viewfile = $filename."_{$this->home_lang}";
  144. // }
  145. // /*每个栏目内置模板文件名*/
  146. // $viewfilepath = TEMPLATE_PATH.$this->theme_style_path.DS.$filename."_{$result['id']}_{$this->home_lang}.".$this->view_suffix;
  147. // if (file_exists($viewfilepath)) {
  148. // $viewfile = $filename."_{$result['id']}_{$this->home_lang}";
  149. // }
  150. // /*--end*/
  151. // }
  152. // /*--end*/
  153. // 区域
  154. $sub_doman = request()->subDomain();
  155. $subcity = Db::name('citysite')->field('id, name, domain')->where("domain", $sub_doman)->find();
  156. $this->assign("subcity", $subcity);
  157. if (!empty($emptyhtml)) {
  158. /*尝试写入静态缓存*/
  159. // write_html_cache($emptyhtml, $result);
  160. /*--end*/
  161. return $this->fetch("./public/html/empty_view.htm");
  162. } else {
  163. $view = ":{$viewfile}";
  164. if (51 == $this->channel) { // 问答模型
  165. $Ask = new \app\home\controller\Ask;
  166. return $Ask->index();
  167. } else {
  168. return $this->fetch($view);
  169. }
  170. }
  171. }
  172. /**
  173. * 市级首页
  174. *
  175. *
  176. */
  177. public function chenshi($tid = '')
  178. {
  179. $param = input('param.');
  180. //dump($param);die;
  181. /*获取当前栏目ID以及模型ID*/
  182. $page_tmp = input('param.page/s', 0);
  183. if (empty($tid) || !is_numeric($page_tmp)) {
  184. to_index("404");
  185. }
  186. $map = [];
  187. /*URL上参数的校验*/
  188. /* $seo_pseudo = config('ey_config.seo_pseudo');
  189. $url_screen_var = config('global.url_screen_var');
  190. if (!isset($param[$url_screen_var]) && 3 == $seo_pseudo)
  191. {
  192. if (stristr($this->request->url(), '&c=Lists&a=index&')) {
  193. to_index();
  194. }
  195. $map = array('a.dirname'=>$tid);
  196. }
  197. else if (isset($param[$url_screen_var]) || 1 == $seo_pseudo || (2 == $seo_pseudo && isMobile()))
  198. {
  199. $seo_dynamic_format = config('ey_config.seo_dynamic_format');
  200. if (1 == $seo_pseudo && 2 == $seo_dynamic_format && stristr($this->request->url(), '&c=Lists&a=index&')) {
  201. to_index();
  202. } else if (!is_numeric($tid) || strval(intval($tid)) !== strval($tid)) {
  203. to_index();
  204. }
  205. $map = array('a.id'=>$tid);
  206. }else if (2 == $seo_pseudo){ // 生成静态页面代码
  207. $map = array('a.id'=>$tid);
  208. }*/
  209. /*--end*/
  210. if (!is_numeric($tid) || strval(intval($tid)) !== strval($tid)) {
  211. $map = array('a.dirname' => $tid);
  212. } else {
  213. $map = array('a.id' => intval($tid));
  214. }
  215. $map['a.is_del'] = 0; // 回收站功能
  216. $map['a.lang'] = $this->home_lang; // 多语言
  217. $row = Db::name('arctype')->field('a.id, a.current_channel, b.nid')
  218. ->alias('a')
  219. ->join('__CHANNELTYPE__ b', 'a.current_channel = b.id', 'LEFT')
  220. ->where($map)
  221. ->find();
  222. if (empty($row)) {
  223. to_index("404");
  224. }
  225. $tid = $row['id'];
  226. $this->nid = $row['nid'];
  227. $this->channel = intval($row['current_channel']);
  228. /*--end*/
  229. $result = $this->logic($tid); // 模型对应逻辑
  230. $eyou = array(
  231. 'field' => $result,
  232. );
  233. $this->eyou = array_merge($this->eyou, $eyou);
  234. $this->assign('eyou', $this->eyou);
  235. /*模板文件*/
  236. // $viewfile = !empty($result['templist'])
  237. // ? str_replace('.' . $this->view_suffix, '', $result['templist'])
  238. // : 'lists_' . $this->nid;
  239. $viewfile = 'index_2';
  240. /*--end*/
  241. if (config('city_switch_on') && !empty($this->home_site)) { // 多站点内置模板文件名
  242. $viewfilepath = TEMPLATE_PATH . $this->theme_style_path . DS . $this->home_site;
  243. $viewfilepath2 = TEMPLATE_PATH . $this->theme_style_path . DS . 'city' . DS . $this->home_site;
  244. if (!empty($this->eyou['global']['site_template'])) {
  245. if (file_exists($viewfilepath2)) {
  246. $viewfile = "city/{$this->home_site}/{$viewfile}";
  247. } else if (file_exists($viewfilepath)) {
  248. $viewfile = "{$this->home_site}/{$viewfile}";
  249. }
  250. }
  251. } else if (config('lang_switch_on') && !empty($this->home_lang)) { // 多语言内置模板文件名
  252. $viewfilepath = TEMPLATE_PATH . $this->theme_style_path . DS . $viewfile . "_{$this->home_lang}." . $this->view_suffix;
  253. if (file_exists($viewfilepath)) {
  254. $viewfile .= "_{$this->home_lang}";
  255. }
  256. }
  257. $users_id = (int)session('users_id');
  258. $emptyhtml = $this->check_arcrank($this->eyou['field'], $users_id);
  259. // /*模板文件*/
  260. // $viewfile = $filename = !empty($result['templist'])
  261. // ? str_replace('.'.$this->view_suffix, '',$result['templist'])
  262. // : 'lists_'.$this->nid;
  263. // /*--end*/
  264. // /*每个栏目内置模板文件名*/
  265. // $viewfilepath = TEMPLATE_PATH.$this->theme_style_path.DS.$filename."_{$result['id']}.".$this->view_suffix;
  266. // if (file_exists($viewfilepath)) {
  267. // $viewfile = $filename."_{$result['id']}";
  268. // }
  269. // /*--end*/
  270. // /*多语言内置模板文件名*/
  271. // if (!empty($this->home_lang)) {
  272. // $viewfilepath = TEMPLATE_PATH.$this->theme_style_path.DS.$filename."_{$this->home_lang}.".$this->view_suffix;
  273. // if (file_exists($viewfilepath)) {
  274. // $viewfile = $filename."_{$this->home_lang}";
  275. // }
  276. // /*每个栏目内置模板文件名*/
  277. // $viewfilepath = TEMPLATE_PATH.$this->theme_style_path.DS.$filename."_{$result['id']}_{$this->home_lang}.".$this->view_suffix;
  278. // if (file_exists($viewfilepath)) {
  279. // $viewfile = $filename."_{$result['id']}_{$this->home_lang}";
  280. // }
  281. // /*--end*/
  282. // }
  283. // /*--end*/
  284. // 区域
  285. $sub_doman = request()->subDomain();
  286. $subcity = Db::name('citysite')->field('id, name, domain')->where("domain", $sub_doman)->find();
  287. $this->assign("subcity", $subcity);
  288. if (!empty($emptyhtml)) {
  289. /*尝试写入静态缓存*/
  290. // write_html_cache($emptyhtml, $result);
  291. /*--end*/
  292. return $this->fetch("./public/html/empty_view.htm");
  293. } else {
  294. $view = ":{$viewfile}";
  295. if (51 == $this->channel) { // 问答模型
  296. $Ask = new \app\home\controller\Ask;
  297. return $Ask->index();
  298. } else {
  299. return $this->fetch($view);
  300. }
  301. }
  302. }
  303. /*
  304. * 判断阅读权限
  305. */
  306. private function check_arcrank($eyou_field, $users_id)
  307. {
  308. $emptyhtml = "";
  309. $eyou_field['page_limit'] = empty($eyou_field['page_limit']) ? [] : explode(',', $eyou_field['page_limit']);
  310. if ($eyou_field['typearcrank'] > 0 && in_array(1, $eyou_field['page_limit'])) { // 若需要会员权限则执行
  311. if (empty($users_id)) {
  312. $url = url('user/Users/login');
  313. if (stristr($url, '?')) {
  314. $url = $url . "&referurl=" . urlencode($eyou_field['arcurl']);
  315. } else {
  316. $url = $url . "?referurl=" . urlencode($eyou_field['arcurl']);
  317. }
  318. $this->redirect($url);
  319. }
  320. $msg = action('api/Ajax/get_arcrank', ['tid' => $eyou_field['id'], 'vars' => 1]);
  321. if (true !== $msg) {
  322. $this->error($msg);
  323. }
  324. }
  325. return $emptyhtml;
  326. }
  327. /*
  328. * 301
  329. */
  330. public function tourl(){
  331. $post = request()->route();
  332. //var_dump($post);die;
  333. if(!empty($post['site'])){
  334. //查找省级域名
  335. $one = Db::name('citysite')->where("domain",'=',$post['site'])->find();
  336. if($post['site'] == 'shandong'){
  337. //省站url
  338. return action('home/City/provincial', 138);
  339. }else if((int)$one['parent_id'] === 5290){
  340. //山东城市
  341. return action('home/City/chenshi', 139);
  342. }
  343. $two = Db::name('citysite')->where("id",'=',$one['parent_id'])->find();
  344. if(!empty($two['domain'])){
  345. header('HTTP/1.1 301 Moved Permanently');
  346. header('Location: https://'.$two['domain'].'.zc10000.com/'.$post['site']);
  347. exit();
  348. }
  349. }
  350. if(!empty($post['aid'])){
  351. $one = Db::name('web_ur')->where("aid",'=',$post['aid'])->find();
  352. //查找序列号
  353. $two = Db::name('seo_number')->where(['tid'=>$one['to_tid'],'aid'=>$one['to_aid']])->find();
  354. //去除数字
  355. $cleanString = preg_replace('/\d/', '', $one['to_url']);
  356. $url = 'https://www.zc10000.com'.$cleanString.$two['number'];
  357. if($cleanString === '/gonglve' || $cleanString === '/zhengce/cms'){
  358. if($cleanString === '/gonglve'){
  359. $cleanString = '/gonglve1-';
  360. }
  361. //var_dump($cleanString);die;
  362. $url = 'https://www.zc10000.com'.$cleanString.$two['number'];
  363. //查找区域
  364. $three = Db::name('archives')->where(['aid'=>$one['to_aid']])->find();
  365. if((int)$three['province_id'] > 0){
  366. //查找
  367. $domain = Db::name('citysite')->where(['id'=>$three['province_id']])->value('domain');
  368. $url = 'https://'.$domain.'.zc10000.com'.$cleanString.$two['number'];
  369. }
  370. if((int)$three['city_id'] > 0){
  371. //查找
  372. $domain2 = Db::name('citysite')->where(['id'=>$three['city_id']])->value('domain');
  373. $url = 'https://'.$domain.'.zc10000.com'.'/'.$domain2.''.$cleanString.$two['number'];
  374. }
  375. }
  376. if(!empty($one)){
  377. header('HTTP/1.1 301 Moved Permanently');
  378. header('Location: '.$url.'');
  379. exit();
  380. }
  381. }
  382. $url = 'https://'.$domain.'.zc10000.com';
  383. header('HTTP/1.1 301 Moved Permanently');
  384. header('Location: '.$url.'');
  385. exit();
  386. //return "656565";
  387. }
  388. public function fileHandle()
  389. {
  390. $post = request()->route();
  391. //var_dump($post);
  392. $name = 'baidu_verify_codeva-'.$post['number'].'.html';
  393. //var_dump($name);
  394. $content = file_get_contents("./".$name);
  395. echo $content;
  396. }
  397. public function fileMapHandle()
  398. {
  399. $ext_url = request()->url();
  400. //var_dump($ext_url);die;
  401. if($ext_url == '/sitemap'){
  402. //没有后缀 默认显示所有的url txt
  403. $content = file_get_contents("./sitemaps/".$ext_url.'.txt');
  404. //echo $content;
  405. // 实例化一个文件响应对象
  406. $response = response($content)->contentType('text/plain');
  407. // 设置浏览器文件下载
  408. //$response->header(['Content-Disposition' => "attachment;filename=\"sitemap.txt\""]);
  409. //return response($content)->contentType('text/plain')->download('filename.txt');
  410. // 发送响应并结束脚本
  411. $response->send();
  412. /*$newfile=file("./sitemaps/".$ext_url.'.txt'); //返回数组的内容
  413. foreach($newfile as $v){
  414. echo $v.'<br/>';
  415. }*/
  416. exit;
  417. }else{
  418. $domain = request()->domain().$ext_url;
  419. $ext = explode('.',$ext_url);
  420. $ext = $ext[1];
  421. $url = explode('.',$domain);
  422. $domain = str_replace('https://','',$url[0]);
  423. //var_dump($domain);die;
  424. //var_dump($name);
  425. $content = file_get_contents("./sitemaps/".$domain.$ext_url);
  426. if($ext == 'txt'){
  427. return response($content)->contentType('text/plain');
  428. }else if($ext == 'xml'){
  429. //return xml($content, 200);
  430. // 设置响应类型为XML并输出
  431. return response($content)->contentType('text/xml');
  432. }else{
  433. echo $content;
  434. }
  435. }
  436. //return json([]);
  437. }
  438. /**
  439. * 模型对应逻辑
  440. * @param intval $tid 栏目ID
  441. * @return array
  442. */
  443. private function logic($tid = '')
  444. {
  445. $result = array();
  446. if (empty($tid)) {
  447. return $result;
  448. }
  449. switch ($this->channel) {
  450. case '6': // 单页模型
  451. {
  452. $arctype_info = model('Arctype')->getInfo($tid);
  453. if ($arctype_info) {
  454. // 读取当前栏目的内容,否则读取每一级第一个子栏目的内容,直到有内容或者最后一级栏目为止。
  455. $archivesModel = new \app\home\model\Archives;
  456. $result_new = $archivesModel->readContentFirst($tid);
  457. // 阅读权限
  458. if ($result_new['arcrank'] == -1) {
  459. $this->success('待审核稿件,你没有权限阅读!');
  460. exit;
  461. }
  462. // 外部链接跳转
  463. if ($result_new['is_part'] == 1) {
  464. $result_new['typelink'] = htmlspecialchars_decode($result_new['typelink']);
  465. if (!is_http_url($result_new['typelink'])) {
  466. $typeurl = '//' . $this->request->host();
  467. if (!preg_match('#^' . ROOT_DIR . '(.*)$#i', $result_new['typelink'])) {
  468. $typeurl .= ROOT_DIR;
  469. }
  470. $typeurl .= '/' . trim($result_new['typelink'], '/');
  471. $result_new['typelink'] = $typeurl;
  472. }
  473. $this->redirect($result_new['typelink']);
  474. exit;
  475. }
  476. /*自定义字段的数据格式处理*/
  477. $result_new = $this->fieldLogic->getChannelFieldList($result_new, $this->channel);
  478. /*--end*/
  479. $result = array_merge($arctype_info, $result_new);
  480. $result['templist'] = !empty($arctype_info['templist']) ? $arctype_info['templist'] : 'lists_' . $arctype_info['nid'];
  481. $result['dirpath'] = $arctype_info['dirpath'];
  482. $result['diy_dirpath'] = $arctype_info['diy_dirpath'];
  483. $result['typeid'] = $arctype_info['typeid'];
  484. $result['rulelist'] = $arctype_info['rulelist'];
  485. }
  486. break;
  487. }
  488. default: {
  489. $result = model('Arctype')->getInfo($tid);
  490. /*外部链接跳转*/
  491. if ($result['is_part'] == 1) {
  492. $result['typelink'] = htmlspecialchars_decode($result['typelink']);
  493. if (!is_http_url($result['typelink'])) {
  494. $result['typelink'] = '//' . $this->request->host() . ROOT_DIR . '/' . trim($result['typelink'], '/');
  495. }
  496. $this->redirect($result['typelink']);
  497. exit;
  498. }
  499. /*end*/
  500. break;
  501. }
  502. }
  503. if (!empty($result)) {
  504. /*自定义字段的数据格式处理*/
  505. $result = $this->fieldLogic->getTableFieldList($result, config('global.arctype_channel_id'));
  506. /*--end*/
  507. }
  508. /*是否有子栏目,用于标记【全部】选中状态*/
  509. $result['has_children'] = model('Arctype')->hasChildren($tid);
  510. /*--end*/
  511. // seo
  512. $result['seo_title'] = set_typeseotitle($result['typename'], $result['seo_title'], $this->eyou['site']);
  513. $result['pageurl'] = typeurl('home/' . $result['ctl_name'] . '/lists', $result, true, true);
  514. $result['pageurl'] = get_list_only_pageurl($result['pageurl'], $result['typeid'], $result['rulelist']);
  515. $result['pageurl_m'] = pc_to_mobile_url($result['pageurl'], $result['typeid']); // 获取当前页面对应的移动端URL
  516. // 移动端域名
  517. $result['mobile_domain'] = '';
  518. if (!empty($this->eyou['global']['web_mobile_domain_open']) && !empty($this->eyou['global']['web_mobile_domain'])) {
  519. $result['mobile_domain'] = $this->eyou['global']['web_mobile_domain'] . '.' . $this->request->rootDomain();
  520. }
  521. /*给没有type前缀的字段新增一个带前缀的字段,并赋予相同的值*/
  522. foreach ($result as $key => $val) {
  523. if (!preg_match('/^type/i', $key)) {
  524. $key_new = 'type' . $key;
  525. !array_key_exists($key_new, $result) && $result[$key_new] = $val;
  526. }
  527. }
  528. /*--end*/
  529. return $result;
  530. }
  531. }