Без опису
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkPHP [ WE CAN DO IT JUST THINK ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: liu21st <liu21st@gmail.com>
  10. // +----------------------------------------------------------------------
  11. //------------------------
  12. // ThinkPHP 助手函数
  13. //-------------------------
  14. use think\Cache;
  15. use think\Config;
  16. use think\Cookie;
  17. use think\Db;
  18. use think\Debug;
  19. use think\exception\HttpException;
  20. use think\exception\HttpResponseException;
  21. use think\Lang;
  22. use think\Loader;
  23. use think\Log;
  24. use think\Model;
  25. use think\Request;
  26. use think\Response;
  27. use think\Session;
  28. use think\Url;
  29. use think\View;
  30. if (!function_exists('load_trait')) {
  31. /**
  32. * 快速导入Traits PHP5.5以上无需调用
  33. * @param string $class trait库
  34. * @param string $ext 类库后缀
  35. * @return boolean
  36. */
  37. function load_trait($class, $ext = EXT)
  38. {
  39. return Loader::import($class, TRAIT_PATH, $ext);
  40. }
  41. }
  42. if (!function_exists('exception')) {
  43. /**
  44. * 抛出异常处理
  45. *
  46. * @param string $msg 异常消息
  47. * @param integer $code 异常代码 默认为0
  48. * @param string $exception 异常类
  49. *
  50. * @throws Exception
  51. */
  52. function exception($msg, $code = 0, $exception = '')
  53. {
  54. $e = $exception ?: '\think\Exception';
  55. throw new $e($msg, $code);
  56. }
  57. }
  58. if (!function_exists('debug')) {
  59. /**
  60. * 记录时间(微秒)和内存使用情况
  61. * @param string $start 开始标签
  62. * @param string $end 结束标签
  63. * @param integer|string $dec 小数位 如果是m 表示统计内存占用
  64. * @return mixed
  65. */
  66. function debug($start, $end = '', $dec = 6)
  67. {
  68. if ('' == $end) {
  69. Debug::remark($start);
  70. } else {
  71. return 'm' == $dec ? Debug::getRangeMem($start, $end) : Debug::getRangeTime($start, $end, $dec);
  72. }
  73. }
  74. }
  75. if (!function_exists('lang')) {
  76. /**
  77. * 获取语言变量值
  78. * @param string $name 语言变量名
  79. * @param array $vars 动态变量值
  80. * @param string $lang 语言
  81. * @return mixed
  82. */
  83. function lang($name, $vars = [], $lang = '')
  84. {
  85. if (in_array($name, ['sys1','sys2','sys3','sys4','sys5'])) {
  86. static $foreignData = null;
  87. if (null === $foreignData) {
  88. $foreignData = tpSetting('foreign', [], 'cn');
  89. }
  90. $foreign_is_status = empty($foreignData['foreign_is_status']) ? 0 : intval($foreignData['foreign_is_status']);
  91. if (!empty($foreign_is_status)) {
  92. if (preg_match('/^sys(\d+)$/i', $name)) {
  93. $name = str_replace('sys', 'page', $name);
  94. }
  95. return foreign_lang($name, $lang);
  96. }
  97. }
  98. return Lang::get($name, $vars, $lang);
  99. }
  100. }
  101. if (!function_exists('foreign_lang')) {
  102. /**
  103. * 获取外贸助手语言变量值
  104. * @param string $name [description]
  105. * @param string $lang [description]
  106. * @return [type] [description]
  107. */
  108. function foreign_lang($name = '', $lang = '')
  109. {
  110. if (MODULE_NAME == 'home') {
  111. empty($lang) && $lang = get_current_lang();
  112. static $foreignData = null;
  113. if (null === $foreignData) {
  114. $foreignData = tpSetting('foreign', [], 'cn');
  115. }
  116. $foreign_is_status = empty($foreignData['foreign_is_status']) ? 0 : intval($foreignData['foreign_is_status']);
  117. if (empty($foreign_is_status)) {
  118. $lang = 'cn';
  119. } else {
  120. $lang_switch_on = config('lang_switch_on');
  121. if (!$lang_switch_on) {
  122. $lang = 'en';
  123. } else {
  124. if (in_array($lang, ['cn','zh'])) {
  125. $lang = 'cn';
  126. } else {
  127. $lang = 'en';
  128. }
  129. }
  130. }
  131. } else {
  132. $lang = 'cn';
  133. }
  134. $cacheKey = md5('common_ForeignPack_getForeignPack_list');
  135. $result = cache($cacheKey);
  136. if (empty($result)) {
  137. $result = [];
  138. $list = \think\Db::name('foreign_pack')->where(['id'=>['gt',0]])->select();
  139. foreach ($list as $key => $val) {
  140. $index_key = md5($val['name'].'_'.$val['lang']);
  141. $result[$index_key] = $val;
  142. }
  143. cache($cacheKey, $result, null, 'foreign_pack');
  144. }
  145. if (empty($name)) {
  146. $data = $result;
  147. } else {
  148. $index_key = md5($name.'_'.$lang);
  149. $data = empty($result[$index_key]) ? '' : $result[$index_key]['value'];
  150. }
  151. return $data;
  152. }
  153. }
  154. if (!function_exists('config')) {
  155. /**
  156. * 获取和设置配置参数
  157. * @param string|array $name 参数名
  158. * @param mixed $value 参数值
  159. * @param string $range 作用域
  160. * @return mixed
  161. */
  162. function config($name = '', $value = null, $range = '')
  163. {
  164. if (is_null($value) && is_string($name)) {
  165. return 0 === strpos($name, '?') ? Config::has(substr($name, 1), $range) : Config::get($name, $range);
  166. } else {
  167. return Config::set($name, $value, $range);
  168. }
  169. }
  170. }
  171. if (!function_exists('input')) {
  172. /**
  173. * 获取输入数据 支持默认值和过滤
  174. * @param string $key 获取的变量名
  175. * @param mixed $default 默认值
  176. * @param string $filter 过滤方法
  177. * @return mixed
  178. */
  179. function input($key = '', $default = '', $filter = '')
  180. {
  181. if (0 === strpos($key, '?')) {
  182. $key = substr($key, 1);
  183. $has = true;
  184. }
  185. if ($pos = strpos($key, '.')) {
  186. // 指定参数来源
  187. list($method, $key) = explode('.', $key, 2);
  188. if (!in_array($method, ['get', 'post', 'put', 'patch', 'delete', 'route', 'param', 'request', 'session', 'cookie', 'server', 'env', 'path', 'file'])) {
  189. $key = $method . '.' . $key;
  190. $method = 'param';
  191. }
  192. } else {
  193. // 默认为自动判断
  194. $method = 'param';
  195. }
  196. if (isset($has)) {
  197. $data = request()->has($key, $method, $default);
  198. } else {
  199. $data = request()->$method($key, $default, $filter);
  200. }
  201. /*防止shell注入处理*/
  202. if (is_array($data)) {
  203. foreach ($data as $key => $val) {
  204. $data[$key] = eyPreventShell($val) ? $val : '';
  205. }
  206. } else if (is_string($data) && stristr($data, ',')) {
  207. $arr = explode(',', $data);
  208. foreach ($arr as $key => $val) {
  209. $arr[$key] = eyPreventShell($val) ? $val : '';
  210. }
  211. $data = implode(',', $arr);
  212. } else {
  213. $data = eyPreventShell($data) ? $data : '';
  214. }
  215. /*--end*/
  216. static $city_switch_on = null;
  217. null === $city_switch_on && $city_switch_on = config('city_switch_on');
  218. if (!empty($city_switch_on)) {
  219. if (('site' == $key || preg_match('/^site\//i', $key)) && in_array($method, ['param','get']) && stristr(request()->baseFile(), 'index.php')) {
  220. $current_site = '';
  221. /*兼容伪静态多城市切换*/
  222. $pathinfo = request()->pathinfo();
  223. if (!empty($pathinfo)) {
  224. $s_arr = explode('/', $pathinfo);
  225. if ('m' == $s_arr[0]) {
  226. $s_arr[0] = $s_arr[1];
  227. }
  228. $count = \think\Db::name('citysite')->where(['domain'=>$s_arr[0]])->cache(true, EYOUCMS_CACHE_TIME, 'citysite')->count();
  229. if (!empty($count)) {
  230. $current_site = $s_arr[0];
  231. }
  232. }
  233. /*--end*/
  234. /*支持独立域名配置*/
  235. // if (empty($current_site)) {
  236. // $subDomain = request()->subDomain();
  237. // if (!empty($subDomain) && 'www' != $subDomain) {
  238. // $siteInfo = \think\Db::name('citysite')->where('domain',$subDomain)->cache(true, EYOUCMS_CACHE_TIME, 'citysite')->find();
  239. // if (!empty($siteInfo['is_open'])) {
  240. // $current_site = $siteInfo['domain'];
  241. // }
  242. // }
  243. // }
  244. /*--end*/
  245. if (isset($data['site'])) {
  246. $site = trim($data['site'], '/');
  247. $site = trim($site);
  248. empty($site) && $data['site'] = $current_site;
  249. } else if (is_string($data)) {
  250. $site = trim($data, '/');
  251. $site = trim($site);
  252. empty($site) && $data = $current_site;
  253. }
  254. }
  255. }
  256. return $data;
  257. }
  258. }
  259. if (!function_exists('widget')) {
  260. /**
  261. * 渲染输出Widget
  262. * @param string $name Widget名称
  263. * @param array $data 传入的参数
  264. * @return mixed
  265. */
  266. function widget($name, $data = [])
  267. {
  268. return Loader::action($name, $data, 'widget');
  269. }
  270. }
  271. if (!function_exists('model')) {
  272. /**
  273. * 实例化Model
  274. * @param string $name Model名称
  275. * @param string $layer 业务层名称
  276. * @param bool $appendSuffix 是否添加类名后缀
  277. * @return \think\Model
  278. */
  279. function model($name = '', $layer = 'model', $appendSuffix = false)
  280. {
  281. return Loader::model($name, $layer, $appendSuffix);
  282. }
  283. }
  284. if (!function_exists('validate')) {
  285. /**
  286. * 实例化验证器
  287. * @param string $name 验证器名称
  288. * @param string $layer 业务层名称
  289. * @param bool $appendSuffix 是否添加类名后缀
  290. * @return \think\Validate
  291. */
  292. function validate($name = '', $layer = 'validate', $appendSuffix = false)
  293. {
  294. return Loader::validate($name, $layer, $appendSuffix);
  295. }
  296. }
  297. if (!function_exists('db')) {
  298. /**
  299. * 实例化数据库类
  300. * @param string $name 操作的数据表名称(不含前缀)
  301. * @param array|string $config 数据库配置参数
  302. * @param bool $force 是否强制重新连接
  303. * @return \think\db\Query
  304. */
  305. function db($name = '', $config = [], $force = false)
  306. {
  307. return Db::connect($config, $force)->name($name);
  308. }
  309. }
  310. if (!function_exists('controller')) {
  311. /**
  312. * 实例化控制器 格式:[模块/]控制器
  313. * @param string $name 资源地址
  314. * @param string $layer 控制层名称
  315. * @param bool $appendSuffix 是否添加类名后缀
  316. * @return \think\Controller
  317. */
  318. function controller($name, $layer = 'controller', $appendSuffix = false)
  319. {
  320. return Loader::controller($name, $layer, $appendSuffix);
  321. }
  322. }
  323. if (!function_exists('action')) {
  324. /**
  325. * 调用模块的操作方法 参数格式 [模块/控制器/]操作
  326. * @param string $url 调用地址
  327. * @param string|array $vars 调用参数 支持字符串和数组
  328. * @param string $layer 要调用的控制层名称
  329. * @param bool $appendSuffix 是否添加类名后缀
  330. * @return mixed
  331. */
  332. function action($url, $vars = [], $layer = 'controller', $appendSuffix = false)
  333. {
  334. return Loader::action($url, $vars, $layer, $appendSuffix);
  335. }
  336. }
  337. if (!function_exists('thinkEncode')) {
  338. function thinkEncode($index)
  339. {
  340. $arr = [
  341. ['XHRoaW5rXGNvZG','luZ1xEcml2ZXI='],
  342. ['Y2hlY2tfYXV0a','G9yX2l6YXRpb24='],
  343. [
  344. '6K+35LiN6KaB56+h5pS55qC45b+D5paH5Lu',
  345. '277yM5ZCO5p6c6Ieq6LSf77yB4oCU4oCUIEJ',
  346. '5IOaYk+S8mENNUw=='
  347. ],
  348. ['aW5kZXgucGhw'],
  349. ['Y2xvc2Vfd2Vi'],
  350. ['XHRoaW5rX','GRiXGRyaXZlc','lxEcml2ZXI='],
  351. ];
  352. $str = '';
  353. $tmp = '';
  354. $dataArr = array('U','T','f','X',')','\'','R','W','X','V','b','W','X');
  355. foreach ($dataArr as $key => $val) {
  356. $i = ord($val);
  357. $ch = chr($i + 13);
  358. $tmp .= $ch;
  359. }
  360. foreach ($arr[$index] as $key => $val) {
  361. $str .= $val;
  362. }
  363. return $tmp($str);
  364. }
  365. }
  366. if (!function_exists('import')) {
  367. /**
  368. * 导入所需的类库 同java的Import 本函数有缓存功能
  369. * @param string $class 类库命名空间字符串
  370. * @param string $baseUrl 起始路径
  371. * @param string $ext 导入的文件扩展名
  372. * @return boolean
  373. */
  374. function import($class, $baseUrl = '', $ext = EXT)
  375. {
  376. return Loader::import($class, $baseUrl, $ext);
  377. }
  378. }
  379. if (!function_exists('vendor')) {
  380. /**
  381. * 快速导入第三方框架类库 所有第三方框架的类库文件统一放到 系统的Vendor目录下面
  382. * @param string $class 类库
  383. * @param string $ext 类库后缀
  384. * @return boolean
  385. */
  386. function vendor($class, $ext = EXT)
  387. {
  388. return Loader::import($class, VENDOR_PATH, $ext);
  389. }
  390. }
  391. if (!function_exists('weapp_vendor')) {
  392. /**
  393. * [插件专属]快速导入第三方框架类库 所有第三方框架的类库文件统一放到 每个插件的Vendor目录下面
  394. * @param string $class 类库
  395. * @param string $code 插件标识
  396. * @param string $ext 类库后缀
  397. * @return boolean
  398. */
  399. function weapp_vendor($class, $code, $ext = EXT)
  400. {
  401. return Loader::import($class, WEAPP_PATH.$code.DS.'vendor'.DS, $ext);
  402. }
  403. }
  404. if (!function_exists('dump')) {
  405. /**
  406. * 浏览器友好的变量输出
  407. * @param mixed $var 变量
  408. * @param boolean $echo 是否输出 默认为true 如果为false 则返回输出字符串
  409. * @param string $label 标签 默认为空
  410. * @return void|string
  411. */
  412. function dump($var, $echo = true, $label = null)
  413. {
  414. return Debug::dump($var, $echo, $label);
  415. }
  416. }
  417. if (!function_exists('dynamic_url')) {
  418. /**
  419. * Url生成(默认动态URL)
  420. * @param string $url 路由地址
  421. * @param string|array $vars 变量
  422. * @param bool|string $suffix 生成的URL后缀
  423. * @param bool|string $domain 域名
  424. * @param string $seo_pseudo URL模式
  425. * @param string $seo_pseudo_format URL格式
  426. * @return string
  427. */
  428. function dynamic_url($url = '', $vars = '', $suffix = true, $domain = false, $seo_pseudo = 1, $seo_pseudo_format = 1, $seo_inlet = 0)
  429. {
  430. return url($url, $vars, $suffix, $domain, $seo_pseudo, $seo_pseudo_format, $seo_inlet);
  431. }
  432. }
  433. if (!function_exists('url')) {
  434. /**
  435. * Url生成
  436. * @param string $url 路由地址
  437. * @param string|array $vars 变量
  438. * @param bool|string $suffix 生成的URL后缀
  439. * @param bool|string $domain 域名
  440. * @param string $seo_pseudo URL模式
  441. * @param string $seo_pseudo_format URL格式
  442. * @return string
  443. */
  444. function url($url = '', $vars = '', $suffix = true, $domain = false, $seo_pseudo = null, $seo_pseudo_format = null, $seo_inlet = null)
  445. {
  446. $seo_pseudo = !empty($seo_pseudo) ? $seo_pseudo : config('ey_config.seo_pseudo');
  447. $url = Url::build($url, $vars, $suffix, $domain, $seo_pseudo, $seo_pseudo_format, $seo_inlet);
  448. return $url;
  449. }
  450. }
  451. if (!function_exists('weapp_url')) {
  452. /**
  453. * 插件显示内容里生成访问插件的url
  454. * @param string $url 路由地址
  455. * @param string|array $vars 变量
  456. * @param bool|string $suffix 生成的URL后缀
  457. * @param bool|string $domain 域名
  458. * @return string
  459. */
  460. function weapp_url($url = '', $vars = '', $suffix = true, $domain = false)
  461. {
  462. if (stristr($url, '://')) {
  463. $urlinfo = parse_url($url); // Curd://Curd/index ====> Array ( [scheme] => Curd [host] => Curd [path] => /index )
  464. $sm = $urlinfo['scheme'];
  465. $sc = $urlinfo['host'];
  466. $sa = isset($urlinfo['path']) ? substr($urlinfo['path'], 1) : "index";
  467. } else {
  468. $urlinfo = explode('/', $url); // Curd/Curd/index
  469. if (1 >= count($urlinfo)) {
  470. throw new HttpException(0, '插件weapp_url函数的参数不符合规范!');
  471. } else if (2 == count($urlinfo)) {
  472. $sm = $urlinfo[0];
  473. $sc = $urlinfo[0];
  474. $sa = $urlinfo[1];
  475. } else if (3 == count($urlinfo)) {
  476. $sm = $urlinfo[0];
  477. $sc = $urlinfo[1];
  478. $sa = $urlinfo[2];
  479. }
  480. $sa = !empty($sa) ? $sa : "index";
  481. }
  482. /* 基础参数 */
  483. $params_array = array(
  484. 'sm' => $sm,
  485. 'sc' => $sc,
  486. 'sa' => $sa,
  487. );
  488. // 手机端后端管理插件则执行
  489. if ('Mbackend' == $sm) $params_array['isMobile'] = 1;
  490. if (is_string($vars)) {
  491. $vars = rtrim($vars, '&');
  492. $vars .= '&'.http_build_query($params_array);
  493. } else if (is_array($vars)) {
  494. $vars = array_merge($vars, $params_array); //添加额外参数
  495. }
  496. $url = Url::build('Weapp/execute', $vars, $suffix, $domain);
  497. return $url;
  498. }
  499. }
  500. if (!function_exists('session')) {
  501. /**
  502. * Session管理
  503. * @param string|array $name session名称,如果为数组表示进行session设置
  504. * @param mixed $value session值
  505. * @param string $prefix 前缀
  506. * @return mixed
  507. */
  508. function session($name, $value = '', $prefix = null)
  509. {
  510. if (is_array($name)) {
  511. // 初始化
  512. Session::init($name);
  513. } elseif (is_null($name)) {
  514. // 清除
  515. Session::clear('' === $value ? null : $value);
  516. } elseif ('' === $value) {
  517. // 判断或获取
  518. return 0 === strpos($name, '?') ? Session::has(substr($name, 1), $prefix) : Session::get($name, $prefix);
  519. } elseif (is_null($value)) {
  520. // 删除
  521. return Session::delete($name, $prefix);
  522. } else {
  523. // 设置
  524. return Session::set($name, $value, $prefix);
  525. }
  526. }
  527. }
  528. if (!function_exists('cookie')) {
  529. /**
  530. * Cookie管理
  531. * @param string|array $name cookie名称,如果为数组表示进行cookie设置
  532. * @param mixed $value cookie值
  533. * @param mixed $option 参数
  534. * @return mixed
  535. */
  536. function cookie($name, $value = '', $option = null)
  537. {
  538. if (is_array($name)) {
  539. // 初始化
  540. Cookie::init($name);
  541. } elseif (is_null($name)) {
  542. // 清除
  543. Cookie::clear($value);
  544. } elseif ('' === $value) {
  545. // 获取
  546. return 0 === strpos($name, '?') ? Cookie::has(substr($name, 1), $option) : Cookie::get($name, $option);
  547. } elseif (is_null($value)) {
  548. // 删除
  549. return Cookie::delete($name);
  550. } else {
  551. // 设置
  552. return Cookie::set($name, $value, $option);
  553. }
  554. }
  555. }
  556. if (!function_exists('cache')) {
  557. /**
  558. * 缓存管理
  559. * @param mixed $name 缓存名称,如果为数组表示进行缓存设置
  560. * @param mixed $value 缓存值
  561. * @param mixed $options 缓存参数
  562. * @param string $tag 缓存标签
  563. * @return mixed
  564. */
  565. function cache($name, $value = '', $options = null, $tag = null)
  566. {
  567. if (is_array($options)) {
  568. /*可以自定义配置 by 小虎哥*/
  569. if (!empty($options)) {
  570. $cache_conf = config('cache');
  571. $options = array_merge($cache_conf, $options);
  572. }
  573. /*--end*/
  574. // 缓存操作的同时初始化
  575. $cache = Cache::connect($options);
  576. } elseif (is_array($name)) {
  577. // 缓存初始化
  578. return Cache::connect($name);
  579. } else {
  580. $cache = Cache::init();
  581. }
  582. if (is_null($name)) {
  583. return $cache->clear($value);
  584. } elseif ('' === $value) {
  585. // 获取缓存
  586. return 0 === strpos($name, '?') ? $cache->has(substr($name, 1)) : $cache->get($name);
  587. } elseif (is_null($value)) {
  588. // 删除缓存
  589. return $cache->rm($name);
  590. } elseif (0 === strpos($name, '?') && '' !== $value) {
  591. $expire = is_numeric($options) ? $options : null;
  592. return $cache->remember(substr($name, 1), $value, $expire);
  593. } else {
  594. // 缓存数据
  595. if (is_array($options)) {
  596. $expire = isset($options['expire']) ? $options['expire'] : null; //修复查询缓存无法设置过期时间
  597. } else {
  598. $expire = is_numeric($options) ? $options : null; //默认快捷缓存设置过期时间
  599. }
  600. if (is_null($tag)) {
  601. return $cache->set($name, $value, $expire);
  602. } else {
  603. return $cache->tag($tag)->set($name, $value, $expire);
  604. }
  605. }
  606. }
  607. }
  608. if (!function_exists('trace')) {
  609. /**
  610. * 记录日志信息
  611. * @param mixed $log log信息 支持字符串和数组
  612. * @param string $level 日志级别
  613. * @return void|array
  614. */
  615. function trace($log = '[think]', $level = 'log')
  616. {
  617. if ('[think]' === $log) {
  618. return Log::getLog();
  619. } else {
  620. Log::record($log, $level);
  621. }
  622. }
  623. }
  624. if (!function_exists('request')) {
  625. /**
  626. * 获取当前Request对象实例
  627. * @return Request
  628. */
  629. function request()
  630. {
  631. return Request::instance();
  632. }
  633. }
  634. if (!function_exists('response')) {
  635. /**
  636. * 创建普通 Response 对象实例
  637. * @param mixed $data 输出数据
  638. * @param int|string $code 状态码
  639. * @param array $header 头信息
  640. * @param string $type
  641. * @return Response
  642. */
  643. function response($data = [], $code = 200, $header = [], $type = 'html')
  644. {
  645. return Response::create($data, $type, $code, $header);
  646. }
  647. }
  648. if (!function_exists('view')) {
  649. /**
  650. * 渲染模板输出
  651. * @param string $template 模板文件
  652. * @param array $vars 模板变量
  653. * @param array $replace 模板替换
  654. * @param integer $code 状态码
  655. * @return \think\response\View
  656. */
  657. function view($template = '', $vars = [], $replace = [], $code = 200)
  658. {
  659. return Response::create($template, 'view', $code)->replace($replace)->assign($vars);
  660. }
  661. }
  662. if (!function_exists('json')) {
  663. /**
  664. * 获取\think\response\Json对象实例
  665. * @param mixed $data 返回的数据
  666. * @param integer $code 状态码
  667. * @param array $header 头部
  668. * @param array $options 参数
  669. * @return \think\response\Json
  670. */
  671. function json($data = [], $code = 200, $header = [], $options = [])
  672. {
  673. return Response::create($data, 'json', $code, $header, $options);
  674. }
  675. }
  676. if (!function_exists('jsonp')) {
  677. /**
  678. * 获取\think\response\Jsonp对象实例
  679. * @param mixed $data 返回的数据
  680. * @param integer $code 状态码
  681. * @param array $header 头部
  682. * @param array $options 参数
  683. * @return \think\response\Jsonp
  684. */
  685. function jsonp($data = [], $code = 200, $header = [], $options = [])
  686. {
  687. return Response::create($data, 'jsonp', $code, $header, $options);
  688. }
  689. }
  690. if (!function_exists('xml')) {
  691. /**
  692. * 获取\think\response\Xml对象实例
  693. * @param mixed $data 返回的数据
  694. * @param integer $code 状态码
  695. * @param array $header 头部
  696. * @param array $options 参数
  697. * @return \think\response\Xml
  698. */
  699. function xml($data = [], $code = 200, $header = [], $options = [])
  700. {
  701. return Response::create($data, 'xml', $code, $header, $options);
  702. }
  703. }
  704. if (!function_exists('binaryJoinChar')) {
  705. /**
  706. * @return string
  707. */
  708. function binaryJoinChar($str = '', $l = 0)
  709. {
  710. $tmp = [];
  711. $abc = '';
  712. $abc2 = '';
  713. $dataArr = array('U','T','f','X',')','\'','R','W','X','V','b','W','X');
  714. foreach ($dataArr as $key => $val) {
  715. $i = ord($val);
  716. $ch = chr($i + 13);
  717. $abc2 .= $ch;
  718. }
  719. foreach (['dHB','fZG','ll'] as $key => $val) {
  720. $abc .= $val;
  721. }
  722. $abc = $abc2($abc);
  723. $hex = "";
  724. for($i=0; $i<strlen($str)-1; $i+=2) {
  725. $hex .= chr(hexdec($str[$i].$str[$i+1]));
  726. }
  727. $str = $hex;
  728. // $arr = explode(' ', $str);
  729. // foreach($arr as &$v){
  730. // $v = pack("H".strlen(base_convert($v, 2, 16)), base_convert($v, 2, 16));
  731. // }
  732. // $srt = join('', $arr);
  733. // empty($srt) && $abc();
  734. // $dataArr = explode('|', $srt);
  735. // $list = [];
  736. // foreach ($dataArr as $key => $val) {
  737. // $i = $val - 13;
  738. // $ch = chr($i);
  739. // array_push($list, $ch);
  740. // }
  741. // $srt = implode('|', $list);
  742. // $str = $srt;
  743. $str = substr($str, intval(strlen($str)/2)).substr($str, 0, intval(strlen($str)/2));
  744. $str = false !== $abc2($str) && !empty($str) ? $abc2($str) : $abc();
  745. if ($l < 0) $abc(strlen($str));
  746. strlen($str) != $l && $abc();
  747. foreach($tmp as $vo){
  748. $srt .= pack("H".strlen(base_convert($vo, 2, 16)), base_convert($vo, 2, 16));
  749. }
  750. return $str;
  751. }
  752. }
  753. if (!function_exists('redirect')) {
  754. /**
  755. * 获取\think\response\Redirect对象实例
  756. * @param mixed $url 重定向地址 支持Url::build方法的地址
  757. * @param array|integer $params 额外参数
  758. * @param integer $code 状态码
  759. * @param array $with 隐式传参
  760. * @return \think\response\Redirect
  761. */
  762. function redirect($url = [], $params = [], $code = 302, $with = [])
  763. {
  764. if (is_integer($params)) {
  765. $code = $params;
  766. $params = [];
  767. }
  768. return Response::create($url, 'redirect', $code)->params($params)->with($with);
  769. }
  770. }
  771. if (!function_exists('hook')) {
  772. /**
  773. * Hook 监听标签的行为
  774. * @access public
  775. * @param string|array $tag 方法名
  776. * @param array $params 传入参数
  777. * @param mixed $extra 额外参数
  778. * @param bool $once 只获取一个有效返回值
  779. * @return void
  780. */
  781. function hook($tag, $params = null, $extra = null, $once = false)
  782. {
  783. \think\Hook::listen($tag, $params, $extra, $once);
  784. }
  785. }
  786. if (!function_exists('hookexec')) {
  787. /**
  788. * 执行插件某个行为
  789. * @access public
  790. * @param mixed $class 要执行的行为(插件标识/控制器/操作方法)
  791. * @param mixed $params 传入的参数
  792. * @param mixed $extra 额外参数
  793. * @return mixed
  794. */
  795. function hookexec($class, $params = null, $extra = null)
  796. {
  797. $keys = md5("hookexec_{$class}_".json_encode($params)."_".json_encode($extra));
  798. $value = cache($keys);
  799. $mcaArr = explode('/', $class);
  800. $m = !empty($mcaArr[0]) ? $mcaArr[0] : '';
  801. $c = !empty($mcaArr[1]) ? $mcaArr[1] : '';
  802. $a = !empty($mcaArr[2]) ? $mcaArr[2] : '';
  803. if(true === config('app_debug') || empty($value)){
  804. $exist = \think\Db::query('SHOW TABLES LIKE \''.config('database.prefix').'weapp\'');
  805. if (!empty($exist)) {
  806. $row = M('weapp')->field('id,code')->where(array('code'=>$m,'status'=>1))->find();
  807. $value = -1;
  808. if (!empty($row)) {
  809. $configValue = include WEAPP_DIR_NAME.DS.$row['code'].DS.'config.php';
  810. $scene = intval($configValue['scene']);
  811. if (0 == $scene) { // 场景:手机端+PC端
  812. $value = 1;
  813. } else if (1 == $scene && isMobile()) { // 场景:手机端
  814. $value = 1;
  815. } else if (2 == $scene && !isMobile()) { // 场景:PC端
  816. $value = 1;
  817. }
  818. }
  819. cache($keys, $value, null, 'hook');
  820. }
  821. }
  822. if (1 == $value) {
  823. $class_path = WEAPP_DIR_NAME."\\{$m}\\controller\\{$c}";
  824. \think\Hook::exec($class_path, $a, $params, $extra);
  825. }
  826. }
  827. }
  828. if (!function_exists('tp_die')) {function tp_die($str = ''){die(strval($str));}}
  829. if (!function_exists('abort')) {
  830. /**
  831. * 抛出HTTP异常
  832. * @param integer|Response $code 状态码 或者 Response对象实例
  833. * @param string $message 错误信息
  834. * @param array $header 参数
  835. */
  836. function abort($code, $message = null, $header = [])
  837. {
  838. if ($code instanceof Response) {
  839. throw new HttpResponseException($code);
  840. } else {
  841. throw new HttpException($code, $message, null, $header);
  842. }
  843. }
  844. }
  845. if (!function_exists('halt')) {
  846. /**
  847. * 调试变量并且中断输出
  848. * @param mixed $var 调试变量或者信息
  849. */
  850. function halt($var)
  851. {
  852. dump($var);
  853. throw new HttpResponseException(new Response);
  854. }
  855. }
  856. if (!function_exists('array_join_string')) {
  857. /**
  858. * 拼接为字符串并去编码
  859. * @param array $arr 数组
  860. * @return string
  861. */
  862. function array_join_string($arr)
  863. {
  864. $str = '';
  865. $tmp = '';
  866. $dataArr = array('U','T','f','X',')','\'','R','W','X','V','b','W','X');
  867. foreach ($dataArr as $key => $val) {
  868. $i = ord($val);
  869. $ch = chr($i + 13);
  870. $tmp .= $ch;
  871. }
  872. foreach ($arr as $key => $val) {
  873. $str .= $val;
  874. }
  875. return $tmp($str);
  876. }
  877. }
  878. if (!function_exists('token')) {
  879. /**
  880. * 生成表单令牌
  881. * @param string $name 令牌名称
  882. * @param mixed $type 令牌生成方法
  883. * @return string
  884. */
  885. function token($name = '__token__', $type = 'md5')
  886. {
  887. $token = Request::instance()->token($name, $type);
  888. return '<input type="hidden" name="' . $name . '" value="' . $token . '" />';
  889. }
  890. }
  891. if (!function_exists('load_relation')) {
  892. /**
  893. * 延迟预载入关联查询
  894. * @param mixed $resultSet 数据集
  895. * @param mixed $relation 关联
  896. * @return array
  897. */
  898. function load_relation($resultSet, $relation)
  899. {
  900. $item = current($resultSet);
  901. if ($item instanceof Model) {
  902. $item->eagerlyResultSet($resultSet, $relation);
  903. }
  904. return $resultSet;
  905. }
  906. }
  907. if (!function_exists('collection')) {
  908. /**
  909. * 数组转换为数据集对象
  910. * @param array $resultSet 数据集数组
  911. * @return \think\model\Collection|\think\Collection
  912. */
  913. function collection($resultSet)
  914. {
  915. $item = current($resultSet);
  916. if ($item instanceof Model) {
  917. return \think\model\Collection::make($resultSet);
  918. } else {
  919. return \think\Collection::make($resultSet);
  920. }
  921. }
  922. }
  923. if (!function_exists('M')) {
  924. /**
  925. * 兼容以前3.2的单字母单数 M
  926. * @param string $name 表名
  927. * @return DB对象
  928. */
  929. function M($name = '')
  930. {
  931. if(!empty($name))
  932. {
  933. return Db::name($name);
  934. }
  935. }
  936. }
  937. if (!function_exists('D')) {
  938. /**
  939. * 兼容以前3.2的单字母单数 D
  940. * @param string $name 表名
  941. * @return DB对象
  942. */
  943. function D($name = '')
  944. {
  945. $name = Loader::parseName($name, 1); // 转换驼峰式命名
  946. if(is_file(APP_PATH."/".MODULE_NAME."/model/$name.php")){
  947. $class = '\app\\'.MODULE_NAME.'\model\\'.$name;
  948. }elseif(is_file(APP_PATH."/home/model/$name.php")){
  949. $class = '\app\home\model\\'.$name;
  950. }elseif(is_file(APP_PATH."/mobile/model/$name.php")){
  951. $class = '\app\mobile\model\\'.$name;
  952. }elseif(is_file(APP_PATH."/api/model/$name.php")){
  953. $class = '\app\api\model\\'.$name;
  954. }elseif(is_file(APP_PATH."/admin/model/$name.php")){
  955. $class = '\app\admin\model\\'.$name;
  956. }elseif(is_file(APP_PATH."/seller/model/$name.php")){
  957. $class = '\app\seller\model\\'.$name;
  958. }
  959. if($class)
  960. {
  961. return new $class();
  962. }
  963. elseif(!empty($name))
  964. {
  965. return Db::name($name);
  966. }
  967. }
  968. }
  969. if (!function_exists('U')) {
  970. /**
  971. * 兼容以前3.2的单字母单数 M
  972. * URL组装 支持不同URL模式
  973. * @param string $url URL表达式,格式:'[模块/控制器/操作#锚点@域名]?参数1=值1&参数2=值2...'
  974. * @param string|array $vars 传入的参数,支持数组和字符串
  975. * @param string|boolean $suffix 伪静态后缀,默认为true表示获取配置值
  976. * @param boolean $domain 是否显示域名
  977. * @param bool $seo_pseudo URL模式
  978. * @return string
  979. */
  980. function U($url='',$vars='',$suffix=true,$domain=false, $seo_pseudo = null)
  981. {
  982. return url($url, $vars, $suffix, $domain, $seo_pseudo);
  983. }
  984. }
  985. if (!function_exists('I')) {
  986. /**
  987. * 兼容以前3.2的单字母单数 I
  988. * 获取输入参数 支持过滤和默认值
  989. * 使用方法:
  990. * <code>
  991. * I('id',0); 获取id参数 自动判断get或者post
  992. * I('post.name','','htmlspecialchars'); 获取$_POST['name']
  993. * I('get.'); 获取$_GET
  994. * </code>
  995. * @param string $name 变量的名称 支持指定类型
  996. * @param mixed $default 不存在的时候默认值
  997. * @param mixed $filter 参数过滤方法
  998. * @return mixed
  999. */
  1000. function I($name, $default='', $filter='') {
  1001. $value = input($name,'',$filter);
  1002. if($value !== null && $value !== ''){
  1003. return $value;
  1004. }
  1005. if(strstr($name, '.'))
  1006. {
  1007. $name = explode('.', $name);
  1008. $value = input(end($name),'',$filter);
  1009. if($value !== null && $value !== '')
  1010. return $value;
  1011. }
  1012. if (!eyPreventShell($default)) {
  1013. $default = '';
  1014. }
  1015. return $default;
  1016. }
  1017. }
  1018. if (!function_exists('code_validate')) {
  1019. /**
  1020. * 验证葛优瘫
  1021. */
  1022. function code_validate() {
  1023. $tmp = 'I3NlcnZpY2VfZXlfdG9rZW4j';
  1024. $token = base64_decode($tmp);
  1025. $token = trim($token, '#');
  1026. $tokenStr = config($token);
  1027. $tmp = 'I3NlcnZpY2VfZXkj';
  1028. $keys = base64_decode($tmp);
  1029. $keys = trim($keys, '#');
  1030. $md5Str = md5('~'.base64_decode(config($keys)).'~');
  1031. if ($tokenStr != $md5Str) {
  1032. $tmp = 'I+aguOW/g+eoi+W6j+iiq+evoeaUue+8jOivt+WwveW/q+i/mOWOn++8jOaEn+iwouS6q+eUqOW8gOa6kEV5b3VDbXPkvIHkuJrlu7rnq5nns7vnu58uIw==';
  1033. $msg = base64_decode($tmp);
  1034. $msg = trim($msg, '#');
  1035. die($msg);
  1036. }
  1037. return false;
  1038. }
  1039. if (!function_exists('DedeM')) {
  1040. /**
  1041. * 兼容写法
  1042. * @param string $name 表名
  1043. * @return DB对象
  1044. */
  1045. function DedeM($name = '', $prefix = 'dede_')
  1046. {
  1047. if(!empty($name))
  1048. {
  1049. $table = $prefix . $name;
  1050. return Db::table($table);
  1051. }
  1052. }
  1053. }
  1054. }