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.

helper.php 46KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134
  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. //------------------------
  14. // EyouCms 助手函数
  15. //-------------------------
  16. use think\Url;
  17. use think\Config;
  18. if (!function_exists('memcache'))
  19. {
  20. /**
  21. * 缓存管理
  22. * @param mixed $name 缓存标识,具体查看./app/extra/admin_memcache.php
  23. * @param mixed $value 缓存值
  24. * @return mixed
  25. */
  26. function memcache($name = null, $value = null, $options = false)
  27. {
  28. //暂时改用memcached
  29. return memcached($name, $value, $options);
  30. exit;
  31. //暂这么连接 后期更改
  32. static $memcache;
  33. // $module = strtolower(MODULE_NAME);
  34. $data = Config::get('memcache_key');
  35. // 关闭memcached时,自动改用cache方式
  36. if (Config::get('memcache.switch') == 0) {
  37. if (empty($name) || empty($data[$name])) {
  38. return false;
  39. }
  40. $expire = $data[$name]['expire'];
  41. return cache($name, $value, $expire);
  42. }
  43. if ($options === false) {
  44. $options = Config::get('memcache');
  45. }
  46. $memcache = new \think\cache\driver\Memcache($options);
  47. if (is_null($name) && is_null($value)) {
  48. return $memcache;
  49. }
  50. if (empty($name) || empty($data[$name])) {
  51. return false;
  52. }
  53. $key = md5(strtolower($name));
  54. $expire = $data[$name]['expire'];
  55. $tag = $data[$name]['tag'];
  56. if (is_null($value)) {
  57. // 获取缓存
  58. return true === $memcache->has($key) ? $memcache->get($key) : false;
  59. } elseif ('' === $value) {
  60. // 删除缓存
  61. return $memcache->rm($key);
  62. } else {
  63. // 缓存数据
  64. $expire = is_numeric($expire) ? $expire : null; //默认快捷缓存设置过期时间
  65. if (is_null($tag) || empty($tag)) {
  66. return $memcache->set($key, $value, $expire);
  67. } else {
  68. // $memcache->tag = $tag;
  69. return $memcache->set($key, $value, $expire);
  70. }
  71. }
  72. }
  73. }
  74. if (!function_exists('memcached'))
  75. {
  76. /**
  77. * 缓存管理
  78. * @param mixed $name 缓存标识,具体查看./app/extra/admin_memcache.php
  79. * @param mixed $value 缓存值
  80. * @return mixed
  81. */
  82. function memcached($name = null, $value = null, $options = false)
  83. {
  84. //暂这么连接 后期更改
  85. static $memcached;
  86. // $module = strtolower(MODULE_NAME);
  87. $data = Config::get('memcache_key');
  88. // 关闭memcached时,自动改用cache方式
  89. if (Config::get('memcache.switch') == 0) {
  90. if (empty($name) || empty($data[$name])) {
  91. return false;
  92. }
  93. $expire = $data[$name]['expire'];
  94. return cache($name, $value, $expire);
  95. }
  96. if ($options === false) {
  97. $options = Config::get('memcache');
  98. }
  99. $memcached = new \think\cache\driver\Memcached($options);
  100. if (is_null($name) && is_null($value)) {
  101. return $memcached;
  102. }
  103. if (empty($name) || empty($data[$name])) {
  104. return false;
  105. }
  106. $key = md5(strtolower($name));
  107. $expire = $data[$name]['expire'];
  108. $tag = $data[$name]['tag'];
  109. if (is_null($value)) {
  110. // 获取缓存
  111. return true === $memcached->has($key) ? $memcached->get($key) : false;
  112. } elseif ('' === $value) {
  113. // 删除缓存
  114. return $memcached->rm($key);
  115. } else {
  116. // 缓存数据
  117. $expire = is_numeric($expire) ? $expire : null; //默认快捷缓存设置过期时间
  118. if (is_null($tag) || empty($tag)) {
  119. return $memcached->set($key, $value, $expire);
  120. } else {
  121. // $memcached->tag = $tag;
  122. return $memcached->set($key, $value, $expire);
  123. }
  124. }
  125. }
  126. }
  127. if (!function_exists('extra_cache')) {
  128. /**
  129. * 获取和设置配置参数 支持批量定义
  130. * @param string|array $name 配置变量
  131. * @param mixed $value 配置值
  132. * @param mixed $default 默认值
  133. * @return mixed
  134. */
  135. function extra_cache($name, $value = '', $expire = 0) {
  136. $request = think\Request::instance();
  137. $module = strtolower($request->module());
  138. $keys_list = config('extra_cache_key');
  139. $key = md5(strtolower($name));
  140. if (!isset($keys_list[$name])) {
  141. return false;
  142. }
  143. $options = $keys_list[$name]['options'];
  144. $cache_conf = config('cache');
  145. if ($expire > 0) {
  146. $cache_conf['expire'] = $expire;
  147. } else {
  148. if (!empty($options['expire'])) {
  149. $cache_conf['expire'] = $options['expire'];
  150. }
  151. }
  152. if (!empty($options['prefix'])) {
  153. $cache_conf['prefix'] = $options['prefix'];
  154. }
  155. $tag = $keys_list[$name]['tag'];
  156. if (empty($tag)) {
  157. $tag = $module;
  158. }
  159. return cache($key, $value, $cache_conf, $tag);
  160. }
  161. }
  162. if (!function_exists('html_cache')) {
  163. /**
  164. * 获取和设置配置参数 支持批量定义
  165. * @param string|array $name 配置变量
  166. * @param mixed $value 配置值
  167. * @param mixed $default 默认值
  168. * @return mixed
  169. */
  170. function html_cache($name, $value = '', $options = array()) {
  171. $new_conf = $options;
  172. if (!isset($options['path'])) {
  173. if (!stristr(request()->baseFile(), 'index.php')) {
  174. $lang = get_admin_lang();
  175. } else {
  176. $lang = get_home_lang();
  177. }
  178. if (isMobile()) {
  179. $path = HTML_PATH."other/{$lang}_mobile_cache/";
  180. } else {
  181. $path = HTML_PATH."other/{$lang}_pc_cache/";
  182. }
  183. $new_conf['path'] = $path;
  184. }
  185. if (is_numeric($options)) {
  186. $new_conf['expire'] = $options;
  187. }
  188. $cache_conf = config('cache');
  189. $cache_conf = array_merge($cache_conf, $new_conf);
  190. $tag = $cache_conf['prefix'];
  191. if (!is_array($name)) {
  192. $name = strtolower($name);
  193. } else {
  194. $name = array_merge($cache_conf, $name);
  195. return cache($name);
  196. }
  197. return cache($name, $value, $cache_conf, $tag);
  198. }
  199. }
  200. if (!function_exists('typeurl')) {
  201. /**
  202. * 栏目Url生成
  203. * @param string $url 路由地址
  204. * @param string|array $param 变量
  205. * @param bool|string $suffix 生成的URL后缀
  206. * @param bool|string $domain 域名
  207. * @param string $seo_pseudo URL模式
  208. * @param string $seo_pseudo_format URL格式
  209. * @return string
  210. */
  211. function typeurl($url = '', $param = '', $suffix = true, $domain = false, $seo_pseudo = null, $seo_pseudo_format = null)
  212. {
  213. $domain_old = $domain;
  214. if (!$domain){
  215. static $absolute_path_open = null;
  216. null === $absolute_path_open && $absolute_path_open = tpCache('web.absolute_path_open'); //是否开启绝对链接
  217. if ($absolute_path_open){
  218. $domain = true;
  219. }
  220. }
  221. $eyouUrl = '';
  222. static $uiset = null;
  223. null === $uiset && $uiset = input('param.uiset/s', 'off');
  224. $uiset = trim($uiset, '/');
  225. static $static_seo_pseudo = null;
  226. null === $static_seo_pseudo && $static_seo_pseudo = tpCache('seo.seo_pseudo');
  227. $seo_pseudo = !empty($seo_pseudo) ? $seo_pseudo : $static_seo_pseudo;
  228. //开启会员,查看权限限制,静态强制转动态
  229. static $web_users_switch = null;
  230. null === $web_users_switch && $web_users_switch = tpCache('web.web_users_switch');
  231. $param['page_limit'] = !empty($param['page_limit']) ? explode(',', $param['page_limit']) : [];
  232. if (!empty($web_users_switch) && !empty($param['typearcrank']) && $param['typearcrank'] > 0 && in_array(1,$param['page_limit']) && $seo_pseudo == 2){
  233. $seo_pseudo = 1;
  234. }
  235. if (empty($seo_pseudo_format)) {
  236. if (1 == $seo_pseudo) {
  237. $seo_pseudo_format = config('ey_config.seo_dynamic_format');
  238. }
  239. }
  240. // 多站点 - 静态模式下默认以动态URL访问
  241. static $city_switch_on = null;
  242. null === $city_switch_on && $city_switch_on = config('city_switch_on');
  243. if (true === $city_switch_on) {
  244. $domain = $domain_old;
  245. if ((1 == $seo_pseudo && 2 == $seo_pseudo_format) || (2 == $seo_pseudo)) {
  246. $seo_pseudo = 1;
  247. $seo_pseudo_format = 1;
  248. }
  249. }
  250. if ('on' != $uiset && 1 == $seo_pseudo && 2 == $seo_pseudo_format) {
  251. if (is_array($param)) {
  252. $vars = array(
  253. 'tid' => $param['id'],
  254. );
  255. $vars = http_build_query($vars);
  256. } else {
  257. $vars = $param;
  258. }
  259. $eyouUrl = url($url, array(), $suffix, $domain, $seo_pseudo, $seo_pseudo_format);
  260. $urlParam = parse_url($eyouUrl);
  261. $query_str = isset($urlParam['query']) ? $urlParam['query'] : '';
  262. if (empty($query_str)) {
  263. $eyouUrl .= '?';
  264. } else {
  265. $eyouUrl .= '&';
  266. }
  267. $eyouUrl .= $vars;
  268. } elseif ('on' != $uiset && 2 == $seo_pseudo) { // 生成静态页面代码
  269. static $is_mobile = null;
  270. null === $is_mobile && $is_mobile = isMobile();
  271. static $response_type = null;
  272. null === $response_type && $response_type = config('ey_config.response_type', $response_type);
  273. if (!empty($response_type) && $is_mobile) { // 手机端访问非静态页面
  274. if (is_array($param)) {
  275. $vars = array(
  276. 'tid' => $param['id'],
  277. );
  278. $vars = http_build_query($vars);
  279. } else {
  280. $vars = $param;
  281. }
  282. static $home_lang = null;
  283. null == $home_lang && $home_lang = get_home_lang(); // 前台语言 by 小虎哥
  284. static $main_lang = null;
  285. null == $main_lang && $main_lang = get_main_lang(); // 前台主体语言 by 小虎哥
  286. if ($home_lang != $main_lang) {
  287. $vars .= "&lang=".get_home_lang();
  288. }
  289. $eyouUrl = url('home/Lists/index', $vars, true, false, 1);
  290. }else{
  291. // PC端访问是静态页面
  292. static $seo_html_listname = null;
  293. null === $seo_html_listname && $seo_html_listname = tpCache('seo.seo_html_listname');
  294. static $seo_html_arcdir = null;
  295. null === $seo_html_arcdir && $seo_html_arcdir = tpCache('seo.seo_html_arcdir');
  296. if ($seo_html_listname == 1) {//存放顶级目录
  297. $dirpath = explode('/',$param['dirpath']);
  298. if($param['parent_id'] == 0){
  299. $url = $seo_html_arcdir.'/'.$dirpath[1].'/';
  300. }else{
  301. $url = $seo_html_arcdir.'/'.$dirpath[1]."/lists_".$param['id'].'.html';
  302. }
  303. } else if ($seo_html_listname == 3) { // 存放子级目录
  304. $dirpath = explode('/',$param['dirpath']);
  305. $url = $seo_html_arcdir.'/'.end($dirpath).'/';
  306. } else if ($seo_html_listname == 4) { // 自定义存放目录
  307. $url = $seo_html_arcdir;
  308. $diy_dirpath = !empty($param['diy_dirpath']) ? $param['diy_dirpath'] : '';
  309. if (!empty($param['rulelist'])) {
  310. $rulelist = ltrim($param['rulelist'], '/');
  311. $rulelist = str_replace("{tid}", $param['id'], $rulelist);
  312. $rulelist = str_replace("{page}", '', $rulelist);
  313. $rulelist = preg_replace('/{(栏目目录|typedir)}(\/?)/i', $diy_dirpath.'/', $rulelist);
  314. $rulelist = '/'.ltrim($rulelist, '/');
  315. if (in_array($param['current_channel'], [6,8]) && !preg_match('/^{(栏目目录|typedir)}\/(list_{tid}_{page}|index)\.html$/i', $param['rulelist'])) {
  316. $rulelist = preg_replace('/\/([\/]*)/i', '/', $rulelist);
  317. } else {
  318. $rulelist = preg_replace('/\/([\/]*)([^\/]*)$/i', '/', $rulelist);
  319. }
  320. $url .= $rulelist;
  321. }else{
  322. $url .= $diy_dirpath."/";
  323. }
  324. } else {
  325. $url = $seo_html_arcdir.$param['dirpath'].'/';
  326. }
  327. $eyouUrl = ROOT_DIR.$url;
  328. if (false !== $domain) {
  329. static $re_domain = null;
  330. null === $re_domain && $re_domain = request()->domain();
  331. if (true === $domain) {
  332. $eyouUrl = $re_domain.$eyouUrl;
  333. } else {
  334. $eyouUrl = rtrim($domain, '/').$eyouUrl;
  335. }
  336. }
  337. }
  338. } elseif ('on' != $uiset && 3 == $seo_pseudo) {
  339. if (is_array($param)) {
  340. $vars = array(
  341. 'tid' => $param['dirname'],
  342. );
  343. } else {
  344. $vars = $param;
  345. }
  346. /*伪静态格式*/
  347. $seo_rewrite_format = config('ey_config.seo_rewrite_format');
  348. if (1 == intval($seo_rewrite_format)) {
  349. $eyouUrl = url('home/Lists/index', $vars, $suffix, $domain, $seo_pseudo, $seo_pseudo_format);
  350. if (!strstr($eyouUrl, '.htm')){
  351. $eyouUrl .= '/';
  352. }
  353. } else if (3 == intval($seo_rewrite_format)) {
  354. $eyouUrl = url('home/Lists/index', $vars, $suffix, $domain, $seo_pseudo, $seo_pseudo_format);
  355. if (!strstr($eyouUrl, '.htm')){
  356. $eyouUrl .= '/';
  357. }
  358. } else if (4 == intval($seo_rewrite_format)) {
  359. $dirname = str_replace($param['dirname'],"",$param['dirpath']);
  360. if (!empty($dirname)){
  361. $dirname = str_ireplace("/", "-", $dirname);
  362. if(!empty($dirname)){
  363. $dirname = trim($dirname,"-");
  364. }
  365. }
  366. if (!empty($dirname)){
  367. $eyouUrl = url('home/Lists/index?'.$dirname, $vars, $suffix, $domain, $seo_pseudo, $seo_pseudo_format);
  368. }else{
  369. $eyouUrl = url('home/Lists/index', $vars, $suffix, $domain, $seo_pseudo, $seo_pseudo_format);
  370. }
  371. $eyouUrl = urldecode($eyouUrl);
  372. if (!strstr($eyouUrl, '.htm')){
  373. $eyouUrl .= '/';
  374. }
  375. } else {
  376. $eyouUrl = url($url, $vars, $suffix, $domain, $seo_pseudo, $seo_pseudo_format); // 兼容v1.1.6之前被搜索引擎收录的URL
  377. }
  378. /*--end*/
  379. } else {
  380. if (is_array($param)) {
  381. $vars = array(
  382. 'tid' => $param['id'],
  383. );
  384. } else {
  385. $vars = $param;
  386. }
  387. $eyouUrl = url('home/Lists/index', $vars, $suffix, $domain, $seo_pseudo, $seo_pseudo_format);
  388. }
  389. return $eyouUrl;
  390. }
  391. }
  392. if (!function_exists('arcurl')) {
  393. /**
  394. * 文档Url生成
  395. * @param string $url 路由地址
  396. * @param string|array $param 变量
  397. * @param bool|string $suffix 生成的URL后缀
  398. * @param bool|string $domain 域名
  399. * @param string $seo_pseudo URL模式
  400. * @param string $seo_pseudo_format URL格式
  401. * @return string
  402. */
  403. function arcurl($url = '', $param = '', $suffix = true, $domain = false, $seo_pseudo = '', $seo_pseudo_format = null)
  404. {
  405. $root_dir = ROOT_DIR;
  406. $domain_old = $domain;
  407. if (!$domain){
  408. static $absolute_path_open = null;
  409. null === $absolute_path_open && $absolute_path_open = tpCache('web.absolute_path_open'); //是否开启绝对链接
  410. if ($absolute_path_open){
  411. $domain = true;
  412. }
  413. }
  414. $eyouUrl = '';
  415. static $uiset = null;
  416. null === $uiset && $uiset = input('param.uiset/s', 'off');
  417. $uiset = trim($uiset, '/');
  418. static $static_seo_pseudo = null;
  419. null === $static_seo_pseudo && $static_seo_pseudo = tpCache('seo.seo_pseudo');
  420. $seo_pseudo = !empty($seo_pseudo) ? $seo_pseudo : $static_seo_pseudo;
  421. //开启会员,查看权限限制,静态强制转动态
  422. static $web_users_switch = null;
  423. null === $web_users_switch && $web_users_switch = tpCache('web.web_users_switch');
  424. if (!empty($web_users_switch) && ((!empty($param['typearcrank']) && $param['typearcrank'] > 0) || (!empty($param['arcrank']) && $param['arcrank'] > 0)) && $seo_pseudo == 2){
  425. $seo_pseudo = 1;
  426. }
  427. if (empty($seo_pseudo_format)) {
  428. if (1 == $seo_pseudo) {
  429. $seo_pseudo_format = config('ey_config.seo_dynamic_format');
  430. }
  431. }
  432. // 多站点 - 静态模式下默认以动态URL访问
  433. static $web_basehost = null;
  434. null === $web_basehost && $web_basehost = tpCache('web.web_basehost');
  435. static $city_switch_on = null;
  436. null === $city_switch_on && $city_switch_on = config('city_switch_on');
  437. if (true === $city_switch_on) {
  438. if ((1 == $seo_pseudo && 2 == $seo_pseudo_format) || (2 == $seo_pseudo)) {
  439. $seo_pseudo = 1;
  440. $seo_pseudo_format = 1;
  441. }
  442. }
  443. if ('on' != $uiset && 1 == $seo_pseudo && 2 == $seo_pseudo_format) {
  444. if (is_array($param)) {
  445. $vars = array(
  446. 'aid' => $param['aid'],
  447. );
  448. } else {
  449. parse_str($param, $vars);
  450. }
  451. /*城市站点的域名路径*/
  452. if (true === $city_switch_on) {
  453. static $subDomain = null;
  454. if (null === $subDomain) {
  455. $subDomain = request()->subDomain();
  456. }
  457. static $rootDomain = null;
  458. if (null === $rootDomain) {
  459. $rootDomain = request()->rootDomain();
  460. }
  461. static $citysiteList = null;
  462. if (null === $citysiteList) {
  463. $citysiteList = get_citysite_list();
  464. }
  465. $domain = $domain_old;
  466. if (!empty($param['area_id']) && !empty($citysiteList[$param['area_id']])) {
  467. $vars['site'] = $citysiteList[$param['area_id']]['domain'];
  468. if (!empty($citysiteList[$param['area_id']]['is_open'])) {
  469. $domain = $vars['site'].'.'.$rootDomain;
  470. $vars['site'] = true;
  471. }
  472. } else if (!empty($param['city_id']) && !empty($citysiteList[$param['city_id']])) {
  473. $vars['site'] = $citysiteList[$param['city_id']]['domain'];
  474. if (!empty($citysiteList[$param['city_id']]['is_open'])) {
  475. $domain = $vars['site'].'.'.$rootDomain;
  476. $vars['site'] = true;
  477. }
  478. } else if (!empty($param['province_id']) && !empty($citysiteList[$param['province_id']])) {
  479. $vars['site'] = $citysiteList[$param['province_id']]['domain'];
  480. if (!empty($citysiteList[$param['province_id']]['is_open'])) {
  481. $domain = $vars['site'].'.'.$rootDomain;
  482. $vars['site'] = true;
  483. }
  484. } else if (!empty($subDomain) && 'www' != $subDomain && $subDomain == get_home_site()) {
  485. $vars['site'] = true;
  486. $domain = preg_replace('/^(http(s)?:)?(\/\/)?([^\/\:]*)(.*)$/i', '${4}', $web_basehost);
  487. } else {
  488. $vars['site'] = true;
  489. }
  490. }
  491. /*--end*/
  492. $eyouUrl = url($url, array(), $suffix, $domain, $seo_pseudo, $seo_pseudo_format);
  493. $urlParam = parse_url($eyouUrl);
  494. $query_str = isset($urlParam['query']) ? $urlParam['query'] : '';
  495. if (empty($query_str)) {
  496. $eyouUrl .= '?';
  497. } else {
  498. $eyouUrl .= '&';
  499. }
  500. $vars = http_build_query($vars);
  501. $eyouUrl .= $vars;
  502. } elseif ($seo_pseudo == 2 && $uiset != 'on') { // 生成静态页面代码
  503. static $is_mobile = null;
  504. null === $is_mobile && $is_mobile = isMobile();
  505. static $response_type = null;
  506. null === $response_type && $response_type = config('ey_config.response_type', $response_type);
  507. if (!empty($response_type) && $is_mobile) { // 手机端访问非静态页面
  508. if (is_array($param)) {
  509. $vars = array(
  510. 'aid' => $param['aid'],
  511. );
  512. } else {
  513. parse_str($param, $vars);
  514. }
  515. /*城市站点的域名路径*/
  516. if (true === $city_switch_on) {
  517. static $subDomain = null;
  518. if (null === $subDomain) {
  519. $subDomain = request()->subDomain();
  520. }
  521. static $rootDomain = null;
  522. if (null === $rootDomain) {
  523. $rootDomain = request()->rootDomain();
  524. }
  525. static $citysiteList = null;
  526. if (null === $citysiteList) {
  527. $citysiteList = get_citysite_list();
  528. }
  529. $domain = $domain_old;
  530. if (!empty($param['area_id']) && !empty($citysiteList[$param['area_id']])) {
  531. $vars['site'] = $citysiteList[$param['area_id']]['domain'];
  532. if (!empty($citysiteList[$param['area_id']]['is_open'])) {
  533. $domain = $vars['site'].'.'.$rootDomain;
  534. $vars['site'] = true;
  535. }
  536. } else if (!empty($param['city_id']) && !empty($citysiteList[$param['city_id']])) {
  537. $vars['site'] = $citysiteList[$param['city_id']]['domain'];
  538. if (!empty($citysiteList[$param['city_id']]['is_open'])) {
  539. $domain = $vars['site'].'.'.$rootDomain;
  540. $vars['site'] = true;
  541. }
  542. } else if (!empty($param['province_id']) && !empty($citysiteList[$param['province_id']])) {
  543. $vars['site'] = $citysiteList[$param['province_id']]['domain'];
  544. if (!empty($citysiteList[$param['province_id']]['is_open'])) {
  545. $domain = $vars['site'].'.'.$rootDomain;
  546. $vars['site'] = true;
  547. }
  548. } else if (!empty($subDomain) && 'www' != $subDomain && $subDomain == get_home_site()) {
  549. $vars['site'] = true;
  550. $domain = preg_replace('/^(http(s)?:)?(\/\/)?([^\/\:]*)(.*)$/i', '${4}', $web_basehost);
  551. } else {
  552. $vars['site'] = true;
  553. }
  554. }
  555. /*--end*/
  556. // $vars = http_build_query($vars);
  557. static $home_lang = null;
  558. null == $home_lang && $home_lang = get_home_lang(); // 前台语言 by 小虎哥
  559. static $main_lang = null;
  560. null == $main_lang && $main_lang = get_main_lang(); // 前台主体语言 by 小虎哥
  561. if ($home_lang != $main_lang) {
  562. $vars['lang'] = get_home_lang();
  563. // $vars .= "&lang=".get_home_lang();
  564. }
  565. $eyouUrl = url('home/View/index', $vars, true, false, 1);
  566. /*城市站点的域名路径*/
  567. if (true === $city_switch_on) { // 全国站显示城市文档时的URL处理
  568. if (true !== $vars['site'] && !empty($vars['site']) && $vars['site'] != $subDomain) {
  569. $eyouUrl .= "&site={$vars['site']}";
  570. }
  571. }
  572. /*--end*/
  573. }
  574. else
  575. { // PC端访问是静态页面
  576. if (!empty($param['htmlfilename'])){
  577. $aid = $param['htmlfilename'];
  578. }else{
  579. $aid = $param['aid'];
  580. }
  581. static $seo_html_pagename = null;
  582. null === $seo_html_pagename && $seo_html_pagename = tpCache('seo.seo_html_pagename');
  583. static $seo_html_arcdir = null;
  584. null === $seo_html_arcdir && $seo_html_arcdir = tpCache('seo.seo_html_arcdir');
  585. if($seo_html_pagename == 1){//存放顶级目录
  586. $dirpath = explode('/',$param['dirpath']);
  587. $url = $seo_html_arcdir.'/'.$dirpath[1].'/'.$aid.'.html';
  588. } else if ($seo_html_pagename == 3) { // 存放子级目录
  589. $dirpath = explode('/',$param['dirpath']);
  590. $url = $seo_html_arcdir.'/'.end($dirpath).'/'.$aid.'.html';
  591. } else if ($seo_html_pagename == 4) { // 自定义存放目录
  592. $url = $seo_html_arcdir;
  593. $diy_dirpath = !empty($param['diy_dirpath']) ? $param['diy_dirpath'] : '';
  594. if (!empty($param['ruleview'])) {
  595. $y = $m = $d = 1;
  596. if (!empty($param['add_time'])){
  597. $y = date('Y', $param['add_time']);
  598. $m = date('m', $param['add_time']);
  599. $d = date('d', $param['add_time']);
  600. }
  601. $ruleview = ltrim($param['ruleview'], '/');
  602. $ruleview = str_ireplace("{aid}", $aid, $ruleview);
  603. $ruleview = str_ireplace("{Y}", $y, $ruleview);
  604. $ruleview = str_ireplace("{M}", $m, $ruleview);
  605. $ruleview = str_ireplace("{D}", $d, $ruleview);
  606. $ruleview = preg_replace('/{(栏目目录|typedir)}(\/?)/i', $diy_dirpath.'/', $ruleview);
  607. $ruleview = '/'.ltrim($ruleview, '/');
  608. $url .= $ruleview;
  609. }else{
  610. $url .= $diy_dirpath."/" . $aid.'.html';
  611. }
  612. }else{
  613. $url = $seo_html_arcdir.$param['dirpath'].'/'.$aid.'.html';
  614. }
  615. $eyouUrl = $root_dir.$url;
  616. if (false !== $domain) {
  617. static $re_domain = null;
  618. null === $re_domain && $re_domain = request()->domain();
  619. if (true === $domain) {
  620. $eyouUrl = $re_domain.$eyouUrl;
  621. } else {
  622. $eyouUrl = rtrim($domain, '/').$eyouUrl;
  623. }
  624. }
  625. }
  626. } elseif ($seo_pseudo == 3 && $uiset != 'on') {
  627. /*伪静态格式*/
  628. $seo_rewrite_format = config('ey_config.seo_rewrite_format');
  629. if (1 == intval($seo_rewrite_format)) {
  630. $url = 'home/View/index';
  631. /*URL里第一层级固定是顶级栏目的目录名称*/
  632. static $tdirnameArr = null;
  633. null === $tdirnameArr && $tdirnameArr = every_top_dirname_list();
  634. if (!empty($param['dirname']) && isset($tdirnameArr[md5($param['dirname'])]['tdirname'])) {
  635. $param['dirname'] = $tdirnameArr[md5($param['dirname'])]['tdirname'];
  636. }
  637. /*--end*/
  638. } else if (3 == intval($seo_rewrite_format)) {
  639. $url = 'home/View/index';
  640. }else if(4 == intval($seo_rewrite_format)){
  641. $dirname = str_replace($param['dirname'],"",$param['dirpath']);
  642. if (!empty($dirname)){
  643. $dirname = str_ireplace("/", "-", $dirname);
  644. if(!empty($dirname)){
  645. $dirname = trim($dirname,"-");
  646. }
  647. }
  648. if (!empty($dirname)){
  649. $url = 'home/View/index?'.$dirname;
  650. }else{
  651. $url = 'home/View/index';
  652. }
  653. }
  654. /*--end*/
  655. if (is_array($param)) {
  656. $vars = array(
  657. 'aid' => !empty($param['htmlfilename']) ? $param['htmlfilename'] : $param['aid'],
  658. 'dirname' => $param['dirname'],
  659. );
  660. } else {
  661. parse_str($param, $vars);
  662. }
  663. /*城市站点的域名路径*/
  664. if (true === $city_switch_on) {
  665. static $subDomain = null;
  666. if (null === $subDomain) {
  667. $subDomain = request()->subDomain();
  668. }
  669. static $rootDomain = null;
  670. if (null === $rootDomain) {
  671. $rootDomain = request()->rootDomain();
  672. }
  673. static $citysiteList = null;
  674. if (null === $citysiteList) {
  675. $citysiteList = get_citysite_list();
  676. }
  677. $domain = $domain_old;
  678. if (!empty($param['area_id']) && !empty($citysiteList[$param['area_id']])) {
  679. $vars['site'] = $citysiteList[$param['area_id']]['domain'];
  680. if (!empty($citysiteList[$param['area_id']]['is_open'])) {
  681. $domain = $vars['site'].'.'.$rootDomain;
  682. $vars['site'] = true;
  683. }
  684. } else if (!empty($param['city_id']) && !empty($citysiteList[$param['city_id']])) {
  685. $vars['site'] = $citysiteList[$param['city_id']]['domain'];
  686. if (!empty($citysiteList[$param['city_id']]['is_open'])) {
  687. $domain = $vars['site'].'.'.$rootDomain;
  688. $vars['site'] = true;
  689. }
  690. } else if (!empty($param['province_id']) && !empty($citysiteList[$param['province_id']])) {
  691. $vars['site'] = $citysiteList[$param['province_id']]['domain'];
  692. if (!empty($citysiteList[$param['province_id']]['is_open'])) {
  693. $domain = $vars['site'].'.'.$rootDomain;
  694. $vars['site'] = true;
  695. }
  696. } else if (!empty($subDomain) && 'www' != $subDomain && $subDomain == get_home_site()) {
  697. $vars['site'] = true;
  698. $domain = preg_replace('/^(http(s)?:)?(\/\/)?([^\/\:]*)(.*)$/i', '${4}', $web_basehost);
  699. } else {
  700. $vars['site'] = true;
  701. }
  702. }
  703. /*--end*/
  704. $eyouUrl = url($url, $vars, $suffix, $domain, $seo_pseudo, $seo_pseudo_format);
  705. /*城市站点的域名路径*/
  706. if (true === $city_switch_on) { // 全国站显示城市文档时的URL处理
  707. if (true !== $vars['site'] && !empty($vars['site']) && $vars['site'] != $subDomain && !strstr($eyouUrl, $vars['site'])) {
  708. if (stristr($eyouUrl, 'index.php')) {
  709. $eyouUrl = str_ireplace('index.php', "index.php/{$vars['site']}", $eyouUrl);
  710. } else if (!empty($root_dir)) {
  711. if (is_http_url($eyouUrl)) {
  712. $eyouUrl = preg_replace('/(\.([^\.\/]+))'.preg_quote($root_dir, '/').'/i', '${1}'.$root_dir.'/'.$vars['site'], $eyouUrl);
  713. } else {
  714. $eyouUrl = preg_replace('/^'.preg_quote($root_dir, '/').'/i', $root_dir.'/'.$vars['site'], $eyouUrl);
  715. }
  716. } else if (empty($root_dir)) {
  717. if (is_http_url($eyouUrl)) {
  718. $eyouUrl = preg_replace('/^(\.([^\.\/]+))\//i', '${1}/'.$vars['site'].'/', $eyouUrl);
  719. } else {
  720. $eyouUrl = preg_replace('/^\//i', '/'.$vars['site'].'/', $eyouUrl);
  721. }
  722. }
  723. }
  724. }
  725. /*--end*/
  726. } else {
  727. if (is_array($param)) {
  728. $vars = array(
  729. 'aid' => $param['aid'],
  730. );
  731. } else {
  732. parse_str($param, $vars);
  733. }
  734. /*城市站点的域名路径*/
  735. if (true === $city_switch_on) {
  736. static $subDomain = null;
  737. if (null === $subDomain) {
  738. $subDomain = request()->subDomain();
  739. }
  740. static $rootDomain = null;
  741. if (null === $rootDomain) {
  742. $rootDomain = request()->rootDomain();
  743. }
  744. static $citysiteList = null;
  745. if (null === $citysiteList) {
  746. $citysiteList = get_citysite_list();
  747. }
  748. $domain = $domain_old;
  749. if (!empty($param['area_id']) && !empty($citysiteList[$param['area_id']])) {
  750. $vars['site'] = $citysiteList[$param['area_id']]['domain'];
  751. if (!empty($citysiteList[$param['area_id']]['is_open'])) {
  752. $domain = $vars['site'].'.'.$rootDomain;
  753. $vars['site'] = true;
  754. }
  755. } else if (!empty($param['city_id']) && !empty($citysiteList[$param['city_id']])) {
  756. $vars['site'] = $citysiteList[$param['city_id']]['domain'];
  757. if (!empty($citysiteList[$param['city_id']]['is_open'])) {
  758. $domain = $vars['site'].'.'.$rootDomain;
  759. $vars['site'] = true;
  760. }
  761. } else if (!empty($param['province_id']) && !empty($citysiteList[$param['province_id']])) {
  762. $vars['site'] = $citysiteList[$param['province_id']]['domain'];
  763. if (!empty($citysiteList[$param['province_id']]['is_open'])) {
  764. $domain = $vars['site'].'.'.$rootDomain;
  765. $vars['site'] = true;
  766. }
  767. } else if (!empty($subDomain) && 'www' != $subDomain && $subDomain == get_home_site()) {
  768. $vars['site'] = true;
  769. $domain = preg_replace('/^(http(s)?:)?(\/\/)?([^\/\:]*)(.*)$/i', '${4}', $web_basehost);
  770. } else {
  771. $vars['site'] = true;
  772. }
  773. }
  774. /*--end*/
  775. // $vars = http_build_query($vars);
  776. $eyouUrl = url('home/View/index', $vars, $suffix, $domain, $seo_pseudo, $seo_pseudo_format);
  777. /*城市站点的域名路径*/
  778. if (true === $city_switch_on) { // 全国站显示城市文档时的URL处理
  779. if (true !== $vars['site'] && !empty($vars['site']) && $vars['site'] != $subDomain) {
  780. $eyouUrl .= "&site={$vars['site']}";
  781. }
  782. }
  783. /*--end*/
  784. }
  785. return $eyouUrl;
  786. }
  787. }
  788. if (!function_exists('tagurl')) {
  789. /**
  790. * Tag标签Url生成
  791. * @param string $url 路由地址
  792. * @param string|array $param 变量
  793. * @param bool|string $suffix 生成的URL后缀
  794. * @param bool|string $domain 域名
  795. * @param string $seo_pseudo URL模式
  796. * @param string $seo_pseudo_format URL格式
  797. * @return string
  798. */
  799. function tagurl($url = '', $param = '', $suffix = true, $domain = false, $seo_pseudo = '', $seo_pseudo_format = null)
  800. {
  801. if (!$domain){
  802. static $absolute_path_open = null;
  803. null === $absolute_path_open && $absolute_path_open = tpCache('web.absolute_path_open'); //是否开启绝对链接
  804. if ($absolute_path_open){
  805. $domain = true;
  806. }
  807. }
  808. $eyouUrl = '';
  809. static $is_plus_tags = null;
  810. if (null === $is_plus_tags) {
  811. if (is_dir('./weapp/Tags/')) {
  812. $is_plus_tags = 1;
  813. } else {
  814. $is_plus_tags = 0;
  815. }
  816. }
  817. static $tags_html = null;
  818. if (null === $tags_html && !empty($is_plus_tags)) {
  819. $tags_html = config('tpcache.plus_tags_html'); //tags插件是否开启,1:开启,0:关闭
  820. }
  821. static $tags_seo_pseudo = null;
  822. if (!empty($tags_html)){
  823. $tagsModel = new \weapp\Tags\model\TagsModel;
  824. $tagsConfData = $tagsModel->getWeappData();
  825. if (!empty($tagsConfData['data']['seo_pseudo'])){
  826. $tags_seo_pseudo = $tagsConfData['data']['seo_pseudo'];
  827. }
  828. }
  829. if (!empty($tags_html) && (empty($tags_seo_pseudo) || $tags_seo_pseudo == 2)) { //插件静态模式
  830. static $tagsConf = null;
  831. null === $tagsConf && $tagsConf = tpCache('tags');
  832. if (!empty($param['tagid'])){ //内页
  833. $eyouUrl = ROOT_DIR."/tags/{$param['tagid']}.html";
  834. if (!empty($tagsConf['tags_mobile_dir']) && isMobile()){
  835. $eyouUrl = ROOT_DIR."/{$tagsConf['tags_mobile_dir']}/{$param['tagid']}.html";
  836. }else if (!empty($tagsConf['tags_pc_dir']) && !isMobile()){
  837. $eyouUrl = ROOT_DIR."/{$tagsConf['tags_pc_dir']}/{$param['tagid']}.html";
  838. }
  839. }else{ //列表页
  840. $eyouUrl = ROOT_DIR."/tags/";
  841. if (!empty($tagsConf['tags_mobile_dir']) && isMobile()){
  842. $eyouUrl = ROOT_DIR."/{$tagsConf['tags_mobile_dir']}/";
  843. }else if (!empty($tagsConf['tags_pc_dir']) && !isMobile()){
  844. $eyouUrl = ROOT_DIR."/{$tagsConf['tags_pc_dir']}/";
  845. }
  846. }
  847. if (false !== $domain) {
  848. static $re_domain = null;
  849. null === $re_domain && $re_domain = request()->domain();
  850. if (true === $domain) {
  851. $eyouUrl = $re_domain.$eyouUrl;
  852. } else {
  853. $host = Config::get('app_host') ?: request()->host();
  854. $rootDomain = substr_count($host, '.') > 1 ? substr(strstr($host, '.'), 1) : $host;
  855. if (substr_count($domain, '.') < 2 && !strpos($domain, $rootDomain)) {
  856. $domain .= '.' . $rootDomain;
  857. }
  858. if (false !== strpos($domain, '://')) {
  859. $scheme = '';
  860. } else {
  861. $scheme = request()->isSsl() || Config::get('is_https') ? 'https://' : 'http://';
  862. }
  863. $eyouUrl = $scheme.rtrim($domain, '/').$eyouUrl;
  864. }
  865. }
  866. } else {
  867. if (is_array($param)) {
  868. $vars = array(
  869. 'tagid' => $param['tagid'],
  870. );
  871. $vars = http_build_query($vars);
  872. } else {
  873. $vars = $param;
  874. }
  875. if (empty($seo_pseudo)) {
  876. if (!empty($tags_seo_pseudo)) { // tag静态化插件的伪静态和动态URL
  877. $seo_pseudo = $tags_seo_pseudo;
  878. $seo_pseudo_format = 1;
  879. } else {
  880. static $seo_config = null;
  881. null === $seo_config && $seo_config = tpCache('seo');
  882. $seo_pseudo = !empty($seo_config['seo_pseudo']) ? $seo_config['seo_pseudo'] : config('ey_config.seo_pseudo');
  883. $seo_dynamic_format = !empty($seo_config['seo_dynamic_format']) ? $seo_config['seo_dynamic_format'] : config('ey_config.seo_dynamic_format');
  884. if (1 == $seo_pseudo) {
  885. $seo_pseudo_format = $seo_dynamic_format;
  886. }
  887. }
  888. } else if (empty($seo_pseudo_format)) {
  889. $seo_pseudo_format = config('ey_config.seo_dynamic_format');
  890. }
  891. $eyouUrl = url($url, $vars, $suffix, $domain, $seo_pseudo, $seo_pseudo_format);
  892. $eyouUrl = auto_hide_index($eyouUrl);
  893. }
  894. return $eyouUrl;
  895. }
  896. }
  897. if (!function_exists('askurl')) {
  898. /**
  899. * 问答模型Url生成
  900. * @param string $url 路由地址
  901. * @param string|array $param 变量
  902. * @param bool|string $suffix 生成的URL后缀
  903. * @param bool|string $domain 域名
  904. * @param string $seo_pseudo URL模式
  905. * @param string $seo_pseudo_format URL格式
  906. * @return string
  907. */
  908. function askurl($url = '', $param = '', $suffix = true, $domain = false, $seo_pseudo = '', $seo_pseudo_format = null, $seo_inlet = null)
  909. {
  910. $eyouUrl = '';
  911. static $static_seo_pseudo = null;
  912. null === $static_seo_pseudo && $static_seo_pseudo = tpCache('seo.seo_pseudo');
  913. $seo_pseudo = !empty($seo_pseudo) ? $seo_pseudo : $static_seo_pseudo;
  914. if (empty($seo_pseudo_format)) {
  915. if (1 == $seo_pseudo) {
  916. $seo_pseudo_format = config('ey_config.seo_dynamic_format');
  917. }
  918. }
  919. // 多站点 - 静态模式下默认以动态URL访问
  920. static $city_switch_on = null;
  921. null === $city_switch_on && $city_switch_on = config('city_switch_on');
  922. if (true === $city_switch_on) {
  923. if ((1 == $seo_pseudo && 2 == $seo_pseudo_format) || (2 == $seo_pseudo)) {
  924. $seo_pseudo = 1;
  925. $seo_pseudo_format = 1;
  926. }
  927. }
  928. if ($seo_pseudo == 3 || $seo_pseudo == 2) {
  929. if (is_array($param)) {
  930. $vars = $param;
  931. } else {
  932. $vars = $param;
  933. }
  934. $eyouUrl = url($url, $vars, $suffix, $domain,3, $seo_pseudo_format, $seo_inlet);
  935. if (!strstr($eyouUrl, '.htm')){
  936. $eyouUrl .= '/';
  937. }
  938. } else {
  939. $eyouUrl = url($url, $param, $suffix, $domain, $seo_pseudo, $seo_pseudo_format, $seo_inlet);
  940. }
  941. return $eyouUrl;
  942. }
  943. }
  944. if (!function_exists('siteurl')) {
  945. /**
  946. * 多城市站点Url生成
  947. * @param string|array $siteinfo 城市站点信息
  948. * @return string
  949. */
  950. function siteurl($siteinfo = '')
  951. {
  952. $eyouUrl = '';
  953. // 是否支持去掉index.php小尾巴
  954. static $seo_inlet = null;
  955. null === $seo_inlet && $seo_inlet = tpCache('seo.seo_inlet');
  956. // URL模式
  957. static $seo_pseudo = null;
  958. null === $seo_pseudo && $seo_pseudo = tpCache('seo.seo_pseudo');
  959. // http/https协议
  960. static $scheme = null;
  961. null === $scheme && $scheme = request()->scheme();
  962. // 网站根域名
  963. static $root_domain = null;
  964. null === $root_domain && $root_domain = request()->rootDomain();
  965. // 当前域名带端口
  966. static $host = null;
  967. null === $host && $host = request()->host();
  968. // 端口号
  969. static $port = null;
  970. null === $port && $port = request()->port();
  971. // 网站域名
  972. static $full_domain = null;
  973. if (null === $full_domain) {
  974. $web_basehost = tpCache('web.web_basehost');
  975. $full_domain = preg_replace('/^(http(s)?:)?(\/\/)?([^\/\:]*)(.*)$/i', '${4}', $web_basehost);
  976. $full_domain = $scheme.'://'.$full_domain;
  977. if (stristr($host, ':')) {
  978. $full_domain .= ":{$port}";
  979. }
  980. }
  981. // 多站点 - 静态模式下默认以动态URL访问
  982. static $city_switch_on = null;
  983. null === $city_switch_on && $city_switch_on = config('city_switch_on');
  984. if (true === $city_switch_on) {
  985. if (2 == $seo_pseudo) {
  986. $seo_pseudo = 1;
  987. }
  988. }
  989. /*去掉入口文件*/
  990. $inletStr = '/index.php';
  991. 1 == intval($seo_inlet) && $inletStr = '';
  992. /*--end*/
  993. if (is_array($siteinfo)) {
  994. $vars = $siteinfo;
  995. } else {
  996. parse_str($siteinfo, $vars);
  997. }
  998. if (1 == $seo_pseudo) {
  999. if (empty($vars['is_open'])) {
  1000. $url = $full_domain.ROOT_DIR.$inletStr;
  1001. if (!empty($inletStr)) {
  1002. $url .= '?';
  1003. } else {
  1004. $url .= '/?';
  1005. }
  1006. $eyouUrl = $url.http_build_query(['site'=>$vars['domain']]);
  1007. } else {
  1008. $url = $scheme.'://'.$vars['domain'].'.'.$root_domain.ROOT_DIR;
  1009. $eyouUrl = $url;
  1010. }
  1011. } else {
  1012. if (empty($vars['is_open'])) {
  1013. $eyouUrl = $full_domain.ROOT_DIR.$inletStr.'/'.$vars['domain'].'/';
  1014. } else {
  1015. $eyouUrl = $scheme.'://'.$vars['domain'].'.'.$root_domain.ROOT_DIR.'/';
  1016. }
  1017. }
  1018. return $eyouUrl;
  1019. }
  1020. }
  1021. if (!function_exists('eyIntval')) {
  1022. /**
  1023. * 强制把数值转为整型
  1024. * @param mixed $data 任意数值
  1025. * @return mixed
  1026. */
  1027. function eyIntval($data)
  1028. {
  1029. if (is_array($data)) {
  1030. foreach ($data as $key => $val) {
  1031. $data[$key] = intval($val);
  1032. }
  1033. } else if (is_string($data) && stristr($data, ',')) {
  1034. $arr = explode(',', $data);
  1035. foreach ($arr as $key => $val) {
  1036. $arr[$key] = intval($val);
  1037. }
  1038. $data = implode(',', $arr);
  1039. } else {
  1040. $data = intval($data);
  1041. }
  1042. return $data;
  1043. }
  1044. }
  1045. if (!function_exists('eyPreventShell')) {
  1046. /**
  1047. * 验证是否shell注入
  1048. * @param mixed $data 任意数值
  1049. * @return mixed
  1050. */
  1051. function eyPreventShell($data = '')
  1052. {
  1053. $redata = true;
  1054. if (!is_array($data) && (preg_match('/^phar:\/\//i', $data) || stristr($data, 'phar://'))) {
  1055. $redata = false;
  1056. }
  1057. return $redata;
  1058. }
  1059. }