Bez popisu
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.

Diyajax.php 24KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\api\controller;
  14. use think\Config;
  15. use think\Db;
  16. use PHPExcel_IOFactory;
  17. class Diyajax extends Base
  18. {
  19. /*
  20. * 初始化操作
  21. */
  22. public function _initialize() {
  23. parent::_initialize();
  24. }
  25. /**
  26. * 检验会员登录
  27. */
  28. public function check_userinfo()
  29. {
  30. if (IS_AJAX) {
  31. \think\Session::pause(); // 暂停session,防止session阻塞机制
  32. $ajaxLogic = new \app\api\logic\AjaxLogic;
  33. $result = $ajaxLogic->check_userinfo();
  34. if (!empty($result['data']['ey_is_login'])) {
  35. $assignData = [
  36. 'users' => $result['users'],
  37. ];
  38. $this->assign($assignData);
  39. $filename = './template/'.THEME_STYLE_PATH.'/'.'system/users_info.htm';
  40. if (file_exists($filename)) {
  41. $html = $this->fetch($filename); // 渲染模板标签语法
  42. } else {
  43. $html = '缺少模板文件:'.ltrim($filename, '.');
  44. }
  45. $result['data']['html'] = $html;
  46. }
  47. respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$result['data']]);
  48. }
  49. to_index("404");
  50. }
  51. /*
  52. * 下载文件
  53. * https://www.zc10000.com/api/diyajax/downfile
  54. */
  55. public function downFile(){
  56. $id = request()->get('id',0);
  57. //var_dump((int)$id);
  58. //非法
  59. if((int)$id === 0){
  60. respose(['code'=>0, 'msg'=>'请求失败!', 'data'=>[]]);
  61. }
  62. //查找记录
  63. $one = Db::name('users_down')->where(['id'=>$id])->find();
  64. if((int)$one['num'] >= 3){
  65. respose(['code'=>0, 'msg'=>'该链接请求下载次数不能超过3次,链接已失效!', 'data'=>[]]);
  66. }
  67. if((int)$one['expire_time'] < time()){
  68. //已过期
  69. respose(['code'=>0, 'msg'=>'下载链接已失效!', 'data'=>[]]);
  70. }
  71. //查找下载地址
  72. $artData = Db::name('zczygz_content')->where('aid', $one['aid'])
  73. ->find();
  74. if(empty($artData) || empty($artData['down'])){
  75. respose(['code'=>0, 'msg'=>'文档不存在!', 'data'=>[]]);
  76. }
  77. //php
  78. $ext = explode('.',$artData['down']);
  79. $ext = end($ext);
  80. $filename = $one['title'].'.'.$ext;
  81. $file = $artData['down'].'?attname='.$filename;
  82. //$filename = basename($file);
  83. //echo $file;
  84. //记录下载次数
  85. Db::name('users_down')->where(['id'=>$id])->setInc('num');
  86. header('location:'.$file);
  87. //$this->downFileCurl($file,$filename);
  88. }
  89. public function downFileCurl($url, $file_name)
  90. {
  91. header('Content-Description: File Transfer');
  92. header('Content-Type: application/vnd.android.package-archive');
  93. header('Content-Disposition: attachment; filename=' . $file_name);
  94. header('Content-Transfer-Encoding: binary');
  95. header('Expires: 0');
  96. header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
  97. header('Pragma: public');
  98. $ch = curl_init();
  99. curl_setopt($ch, CURLOPT_URL, $url);
  100. curl_setopt($ch, CURLOPT_HEADER, 0);
  101. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  102. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 0);
  103. curl_setopt($ch, CURLOPT_WRITEFUNCTION, function ($ch, $buffer) {
  104. echo $buffer;
  105. return strlen($buffer);
  106. });
  107. curl_exec($ch);
  108. curl_close($ch);
  109. }
  110. /*
  111. * 获取所有申报专业
  112. * /api/Diyajax/getZcList
  113. */
  114. public function getZcList()
  115. {
  116. $param = request()->param();
  117. $param['id'] = (int)$param['id'];
  118. if(!empty($param['id'])){
  119. if($param['id'] === 10001){
  120. //不限制
  121. //查找
  122. $list = Db::name('zc_position')
  123. ->field('id,title')
  124. ->where('is_del', 0)
  125. ->where('status', 1)
  126. ->select();
  127. }else if($param['id'] === 20000) {
  128. //全国
  129. $list = Db::name('zc_position')
  130. ->field('id,title')
  131. ->where('type', 0)
  132. ->where('is_del', 0)
  133. ->where('status', 1)
  134. ->select();
  135. }else {
  136. //具体地区
  137. $ids = Db::name('zc_map')
  138. ->where('map_id',$param['id'])
  139. ->where('is_del', 0)
  140. ->column('zc_id');
  141. $list = Db::name('zc_position')
  142. ->field('id,title')
  143. ->where('type', 1)
  144. ->where('is_del', 0)
  145. ->where('status', 1)
  146. ->whereIn('id', $ids)
  147. ->select();
  148. }
  149. respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$list]);
  150. }else{
  151. respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
  152. }
  153. }
  154. /*
  155. * getZcDjList
  156. * /api/Diyajax/getZcDjList
  157. */
  158. public function getZcDjList(){
  159. $param = request()->param();
  160. $param['id'] = (int)$param['id'];
  161. if(!empty($param['id'])){
  162. $dj_group_id = Db::name('zc_position')->where('id', $param['id'])->value('dj_group_id');
  163. //调用等级
  164. $list = Db::name('zcdj_position')->where('type',$dj_group_id)->select();
  165. respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$list]);
  166. }else{
  167. respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
  168. }
  169. }
  170. /*
  171. * //获取毕业专业
  172. * /api/Diyajax/getZcZyList
  173. */
  174. public function getZcZyList()
  175. {
  176. $param = request()->param();
  177. $param['id'] = (int)$param['id'];
  178. if(!empty($param['id'])){
  179. $map_ids = Db::name('zc_zy')
  180. ->where('zc_id', $param['id'])
  181. ->where('is_del', 0)
  182. ->column('map_id');
  183. //调用等级
  184. $list = Db::name('zczy_position')
  185. ->where('id','in',$map_ids)
  186. ->where('is_del', 0)
  187. ->where('status', 1)
  188. ->select();
  189. respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$list]);
  190. }else{
  191. respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
  192. }
  193. }
  194. public function getZcZsList()
  195. {
  196. $param = request()->param();
  197. $param['id'] = (int)$param['id'];
  198. $param['xl'] = (int)$param['xl'];
  199. if(!empty($param['id'])){
  200. $map_ids = Db::name('zc_zs')
  201. ->where('zc_id', $param['id'])
  202. ->where('is_del', 0)
  203. ->column('map_id');
  204. //调用等级
  205. $list = Db::name('zczs_position')
  206. ->where('id','in',$map_ids)
  207. ->where('is_del', 0)
  208. ->where('status', 1)
  209. ->select();
  210. $new_list = [];
  211. foreach ($list as $k=>$v){
  212. if((int)$v['bdxl'] >= (int)$param['xl']){
  213. //保留
  214. $new_list[] = $v;
  215. }
  216. }
  217. respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$new_list]);
  218. }else{
  219. respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
  220. }
  221. }
  222. /*
  223. * getZyList
  224. * /api/Diyajax/getZyList
  225. * 丢弃
  226. */
  227. public function getZyList()
  228. {
  229. $param = request()->param();
  230. $param['xlid'] = (int)$param['xlid'];
  231. $param['zcid'] = (int)$param['zcid'];
  232. if(!empty($param['xlid']) && !empty($param['zcid'])){
  233. $map_ids = Db::name('zc_zy')
  234. ->where('zc_id', $param['id'])
  235. ->where('is_del', 0)
  236. ->column('map_id');
  237. //调用等级
  238. $list = Db::name('zczy_position')
  239. ->where('id','in',$map_ids)
  240. ->where('is_del', 0)
  241. ->where('status', 1)
  242. ->select();
  243. respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$list]);
  244. }else{
  245. respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
  246. }
  247. }
  248. /*
  249. * 后期再加令牌
  250. */
  251. public function getCode()
  252. {
  253. $param = request()->param();
  254. $mobile = $param['mobile'];
  255. if (empty($mobile)){
  256. respose(['code'=>0, 'msg'=>'手机号码不能为空', 'data'=>[]]);
  257. }
  258. if (!check_mobile($mobile)) {
  259. respose(['code'=>0, 'msg'=>'手机号码格式不正确', 'data'=>[]]);
  260. }
  261. /*是否允许再次发送*/
  262. $where = [
  263. 'mobile' => $mobile,
  264. 'source' => 6, //$scene
  265. 'status' => 1,
  266. 'is_use' => 0,
  267. 'add_time' => ['>', getTime() - 120]
  268. ];
  269. $Result = Db::name('sms_log')->where($where)->order('id desc')->count();
  270. if (!empty($Result) && false == config('sms_debug')){
  271. respose(['code'=>0, 'msg'=>'120秒内只能发送一次', 'data'=>[]]);
  272. }
  273. $Result = sendSms(1, $mobile, array('content' => mt_rand(1000, 9999)));
  274. if (intval($Result['status']) == 1) {
  275. //@unlink($session_file);
  276. //$this->success('发送成功!');
  277. respose(['code'=>1, 'msg'=>'发送成功', 'data'=>[]]);
  278. } else {
  279. //$this->error($Result['msg']);
  280. respose(['code'=>0, 'msg'=>$Result['msg'], 'data'=>[]]);
  281. }
  282. }
  283. /*
  284. * 处理表单提交数据
  285. */
  286. public function insData()
  287. {
  288. $param = request()->param();
  289. $mobile = $param['sjhm'];
  290. if (empty($mobile)){
  291. respose(['code'=>0, 'msg'=>'手机号码不能为空', 'data'=>[]]);
  292. }
  293. if (!check_mobile($mobile)) {
  294. respose(['code'=>0, 'msg'=>'手机号码格式不正确', 'data'=>[]]);
  295. }
  296. //验证码校验 $param['yzm']
  297. //判断验证码是否存在并且是否可用
  298. if($param['yzm'] == '0000'){
  299. //免验证
  300. }else {
  301. $RecordWhere = [
  302. 'mobile' => trim($param['sjhm']),
  303. 'code' => trim($param['yzm']),
  304. 'lang' => $this->home_lang
  305. ];
  306. $RecordData = Db::name('sms_log')->where($RecordWhere)->field('is_use, add_time')->order('id desc')->find();
  307. if (!empty($RecordData)) {
  308. // 验证码存在
  309. $time = getTime();
  310. $RecordData['add_time'] += Config::get('global.mobile_default_time_out');
  311. if (1 == $RecordData['is_use'] || $RecordData['add_time'] <= $time) {
  312. respose(['code' => 0, 'msg' => '手机验证码已被使用或超时,请重新发送!', 'data' => []]);
  313. } else {
  314. // 处理手机验证码
  315. $RecordWhere = [
  316. 'source' => 1,
  317. 'mobile' => $param['sjhm'],
  318. 'is_use' => 0,
  319. 'lang' => $this->home_lang
  320. ];
  321. // 更新数据
  322. $RecordData = [
  323. 'is_use' => 1,
  324. 'update_time' => $time
  325. ];
  326. Db::name('sms_log')->where($RecordWhere)->update($RecordData);
  327. }
  328. } else {
  329. respose(['code' => 0, 'msg' => '手机验证码不正确,请重新输入!', 'data' => []]);
  330. }
  331. }
  332. $param['zhengshu_val'] = substr($param['zhengshu_val'], 0, -1);
  333. $param['zhengshu'] = explode(',',$param['zhengshu_val']);
  334. //翻译冗余字段
  335. $xl_arr = ['','中专','高技','大专','本科','硕士','博士'];
  336. $xxlx_arr = ['','全日制','非全日制'];
  337. $sbzy_val = Db::name('zc_position')->where('id',$param['sbzy'])->value('title');
  338. $sbdj_val = Db::name('zcdj_position')->where('id',$param['sbdj'])->value('title');
  339. $zs_list = Db::name('zczs_position')->field('id,title')->where('id','in',$param['zhengshu'])->select();
  340. $zs_str = '';
  341. foreach ($zs_list as $k => $v){
  342. $key = array_search($v['id'],$param['zhengshu']);
  343. $zs_str .= $v['title'].'('.$param['zsnx'][$key].'年),';
  344. }
  345. $zy_list = Db::name('zczy_position')->field('id,title')->where('id','in',$param['zy'])->select();
  346. $zy_str = '';
  347. foreach ($zy_list as $k => $v){
  348. $zy_str .= $v['title'].',';
  349. }
  350. $szcs_str = Db::name('citysite')
  351. ->where('id', $param['szcs'])
  352. ->value('name');
  353. $szsf_str = Db::name('citysite')
  354. ->where('id', $param['szsf'])
  355. ->value('name');
  356. $json = [
  357. 'xl' => $xl_arr[$param['xl']], //学历
  358. 'sbzy' => $sbzy_val, //申报专业
  359. 'sbdj' => $sbdj_val, //申报等级
  360. 'xxlx' => $xxlx_arr[$param['xxlx']], //学校类型
  361. 'zs' => $zs_str, //证书
  362. 'zy' => $zy_str, //专业
  363. 'szsf' => $szsf_str, //省份
  364. 'szcs' => $szcs_str, //城市
  365. ];
  366. $json_str = json_encode($json,JSON_UNESCAPED_UNICODE);
  367. //{"xl":"中专","sbzy":"建筑职称","sbdj":"初级","xxlx":"全日制","zs":"建筑一级证书(1年),","zy":"计算机网络技术,","szsf":"广东","szcs":"广州"}
  368. //插入数据
  369. $insertData = [
  370. 'yxdq' => $param['yxdq'], //预选地区
  371. 'sbzy' => $param['sbzy'], //申报专业
  372. 'sbdj' => $param['sbdj'], //申报等级
  373. 'bysj' => $param['bysj2'], //毕业时间
  374. 'nl' => $param['nl'], //年龄
  375. 'xl' => $param['xl'], //学历
  376. 'xxlx' => $param['xxlx'], //学校类型
  377. 'sjhm' => $param['sjhm'], //手机号码
  378. 'ch' => $param['ch'], //称呼
  379. 'zs' => json_encode($param['zhengshu'],JSON_UNESCAPED_UNICODE), //证书 //checkbox $param['zs'] 提交不完全
  380. 'zsnx' => json_encode($param['zsnx'],JSON_UNESCAPED_UNICODE), //证书年限
  381. 'zy' => json_encode($param['zy'],JSON_UNESCAPED_UNICODE), //毕业专业
  382. 'addtime' => getTime(),
  383. 'updatetime' => getTime(),
  384. 'is_del' => 0,
  385. 'status' => 1,
  386. 'szcs' => $param['szcs'], //城市
  387. 'szsf' => $param['szsf'], //省份
  388. 'extend' => $json_str
  389. ];
  390. $res_id = Db::name('zc_form')->insertGetId($insertData);
  391. if($res_id > 0){
  392. $str = md5($res_id.time());
  393. $run = Db::name('zc_form')->where('id', $res_id)->update(['code' => $str]);
  394. if($run === 1){
  395. respose(['code'=>1, 'msg'=>'提交成功', 'data'=>['code'=>$str,'mobile'=>$param['sjhm']]]);
  396. }
  397. }
  398. respose(['code'=>0, 'msg'=>'提交失败', 'data'=>[]]);
  399. }
  400. /*
  401. * 验证码
  402. * 这里不记录查询记录
  403. */
  404. public function cxCode()
  405. {
  406. $param = request()->param();
  407. $mobile = $param['mobile'];
  408. if (empty($mobile)){
  409. respose(['code'=>0, 'msg'=>'手机号码不能为空', 'data'=>[]]);
  410. }
  411. if (!check_mobile($mobile)) {
  412. respose(['code'=>0, 'msg'=>'手机号码格式不正确', 'data'=>[]]);
  413. }
  414. if (empty($param['code'])){
  415. respose(['code'=>0, 'msg'=>'验证码不能为空', 'data'=>[]]);
  416. }
  417. if($param['code'] == '0000'){
  418. //免验证
  419. }else {
  420. $RecordWhere = [
  421. 'mobile' => trim($param['mobile']),
  422. 'code' => trim($param['code']),
  423. 'lang' => $this->home_lang
  424. ];
  425. $RecordData = Db::name('sms_log')->where($RecordWhere)->field('is_use, add_time')->order('id desc')->find();
  426. if (!empty($RecordData)) {
  427. // 验证码存在
  428. $time = getTime();
  429. $RecordData['add_time'] += Config::get('global.mobile_default_time_out');
  430. if (1 == $RecordData['is_use'] || $RecordData['add_time'] <= $time) {
  431. respose(['code' => 0, 'msg' => '手机验证码已被使用或超时,请重新发送!', 'data' => []]);
  432. } else {
  433. // 处理手机验证码
  434. $RecordWhere = [
  435. 'source' => 1,
  436. 'mobile' => $param['mobile'],
  437. 'is_use' => 0,
  438. 'lang' => $this->home_lang
  439. ];
  440. // 更新数据
  441. $RecordData = [
  442. 'is_use' => 1,
  443. 'update_time' => $time
  444. ];
  445. Db::name('sms_log')->where($RecordWhere)->update($RecordData);
  446. }
  447. } else {
  448. respose(['code' => 0, 'msg' => '手机验证码不正确,请重新输入!', 'data' => []]);
  449. }
  450. }
  451. respose(['code'=>1, 'msg'=>'验证通过,查询中...', 'data'=>[]]);
  452. }
  453. /*
  454. * 获取城市1
  455. */
  456. public function getCsList(){
  457. $param = request()->param();
  458. $param['id'] = (int)$param['id'];
  459. if(!empty($param['id'])){
  460. $list = Db::name('citysite')
  461. ->field('id,name')
  462. ->where('parent_id', $param['id'])
  463. //->where('status',1)
  464. //->where('is_open',1)
  465. ->select();
  466. respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$list]);
  467. }else{
  468. respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
  469. }
  470. }
  471. public function kjForm(){
  472. $param = request()->param();
  473. $param['form_id'] = (int)$param['form_id'];
  474. $one = Db::name('zc_form')->where('id', $param['form_id'])->find();
  475. if((int)$one['pccs'] === 0){
  476. //未更新
  477. if(!empty($param['form_id'])){
  478. $pccs = Db::name('zc_form')->where(['sjhm'=>$one['sjhm'],'is_del'=>0])->count();
  479. $data = [
  480. 'pccs' => (int)$pccs + 1,
  481. 'is_tg' => (int)$param['is_tg'],
  482. 'jjfa' => $param['jjfa'],
  483. 'xy_info' => $param['xy_info'],
  484. ];
  485. //更新表单数据
  486. $list = Db::name('zc_form')
  487. ->where('id', $param['form_id'])
  488. ->update($data);
  489. respose(['code'=>1, 'msg'=>'请求成功', 'data'=>[]]);
  490. }else{
  491. respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
  492. }
  493. }else{
  494. respose(['code'=>0, 'msg'=>'请求失败', 'data'=>[]]);
  495. }
  496. }
  497. public function getFormList()
  498. {
  499. $list = Db::name('zc_form')
  500. //->where('pccs', 1) //同一号码 只调用一次
  501. ->field('id,ch,sjhm,is_tg,jjfa,extend')
  502. ->where('is_del', 0)
  503. ->where('pccs', '>',0)
  504. ->order('updatetime desc')
  505. //->fetchSql(true)
  506. ->limit(20)
  507. ->select();
  508. //var_dump($list);
  509. $is_tg_str = ['条件不符','符合条件'];
  510. foreach ($list as $key => $item) {
  511. $item['is_tg_n'] = $item['is_tg'];
  512. $extend_info = json_decode($item['extend'],true);
  513. $item['sbxx'] = $extend_info['sbzy'].$extend_info['sbdj'];
  514. $item['sjhm'] = preg_replace('/(\d{3})\d{4}(\d{4})/', '$1****$2', $item['sjhm']);
  515. $item['is_tg'] = $is_tg_str[$item['is_tg']];
  516. $list[$key] = $item;
  517. }
  518. $zrs = $list[0]['id'] + 1000;
  519. respose(['code'=>1, 'msg'=>'请求成功', 'data'=>$list,'zrs'=>$zrs]);
  520. }
  521. /*
  522. * 导入数据处理
  523. * /api/Diyajax/exportData
  524. * https://www.zc10000.com/api/Diyajax/exportData
  525. *
  526. * 清除sql命令
  527. *
  528. TRUNCATE TABLE ey_zc_zs;
  529. TRUNCATE TABLE ey_zc_zy;
  530. TRUNCATE TABLE ey_zc_position;
  531. TRUNCATE TABLE ey_zczy_position;
  532. TRUNCATE TABLE ey_zczs_position;
  533. TRUNCATE TABLE ey_zcwf_position;
  534. TRUNCATE TABLE ey_zcwe_position;
  535. TRUNCATE TABLE ey_zcwd_position;
  536. TRUNCATE TABLE ey_zcdj_position;
  537. */
  538. public function exportData(){
  539. $fileTmpPath = './public/006.xlsx';
  540. $expType = PHPExcel_IOFactory::identify($fileTmpPath);
  541. $objReader = PHPExcel_IOFactory::createReader($expType);
  542. $objPHPExcel = $objReader->load($fileTmpPath);
  543. $sheet = $objPHPExcel->getSheet(0); //获取第一张表
  544. $highestRow = $sheet->getHighestRow(); //获取总行数
  545. $highestColumn = $sheet->getHighestColumn(); //XFD
  546. //var_dump($highestRow);die;
  547. //var_dump($highestColumn);die;
  548. //$highestRow = 2; //测试
  549. echo "<pre>";
  550. $rowData_1 = $sheet->rangeToArray('A' . 1 . ':' . $highestColumn . 1, NULL, TRUE, FALSE);
  551. //var_dump($rowData_1);
  552. // 循环读取每个单元格的内容。行数是以第1行为起始
  553. for ($row = 2; $row <= $highestRow; $row++) {
  554. $rowData = $sheet->rangeToArray('A' . $row . ':' . $highestColumn . $row, NULL, TRUE, FALSE);
  555. // 处理$rowData,例如保存到数据库等
  556. // ...
  557. //var_dump($rowData);
  558. //判断条件 丢弃
  559. $xlmcc = $rowData[0][4];
  560. if($xlmcc == '研究生' || $xlmcc == '双学位'){
  561. echo '忽略这个记录<br/>';
  562. }else {
  563. if(!empty($rowData[0][0])) {
  564. //处理职称名称 返回职称ID
  565. $aid = model('v1.Zc')->zcPos($rowData[0][0]);
  566. //申报等级
  567. $did = model('v1.Zc')->zcTypeAndDj($aid, $rowData[0][2]);
  568. //添加专业 - 具体专业
  569. $yids = model('v1.Zc')->zczyAdd($aid, $rowData);
  570. //添加专业绑定职称
  571. if (!empty($yids)) {
  572. model('v1.Zc')->bindZcZy($aid, $yids);
  573. }
  574. if (!empty($rowData[0][8])) {
  575. //添加证书 得到证书id
  576. $sid = model('v1.Zc')->ZsZcAdd($aid, $rowData[0][8]);
  577. //添加证书绑定职称
  578. $zids = [$sid];
  579. model('v1.Zc')->bingZs($aid, $zids);
  580. //证书绑定学历
  581. //博士,硕士,研究生,双学位,本科,大专,高技,中专
  582. model('v1.Zc')->zsBindXl($sid, $rowData);
  583. }
  584. //添加主规则 区域/申报等级/职称名称
  585. $gid = model('v1.Zc')->addZcwd($aid, $did, $rowData);
  586. //添加学历规则 学历/学历条件/毕业年限/年龄/专业要求/具体专业
  587. $xid = model('v1.Zc')->addZcXi($gid, $yids, $rowData);
  588. //添加证书规则 且还是或 存在疑问? 前置+具体要求
  589. if (!empty($rowData[0][8])) {
  590. $zid = model('v1.Zc')->addZsGz($gid, $xid, $sid, $rowData);
  591. }
  592. $title = $rowData[0][0] . '-' . $rowData[0][2] . '-' . $rowData[0][1] . '-' . $rowData[0][4];
  593. echo '已处理[' . $title . ']这个记录<br/>';
  594. }else{
  595. echo $row.'为空这个记录<br/>';
  596. }
  597. }
  598. }
  599. echo "</pre>";
  600. }
  601. }