helper.php 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611
  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. return Lang::get($name, $vars, $lang);
  86. }
  87. }
  88. if (!function_exists('config')) {
  89. /**
  90. * 获取和设置配置参数
  91. * @param string|array $name 参数名
  92. * @param mixed $value 参数值
  93. * @param string $range 作用域
  94. * @return mixed
  95. */
  96. function config($name = '', $value = null, $range = '')
  97. {
  98. if (is_null($value) && is_string($name)) {
  99. return 0 === strpos($name, '?') ? Config::has(substr($name, 1), $range) : Config::get($name, $range);
  100. } else {
  101. return Config::set($name, $value, $range);
  102. }
  103. }
  104. }
  105. if (!function_exists('input')) {
  106. /**
  107. * 获取输入数据 支持默认值和过滤
  108. * @param string $key 获取的变量名
  109. * @param mixed $default 默认值
  110. * @param string $filter 过滤方法
  111. * @return mixed
  112. */
  113. function input($key = '', $default = null, $filter = '')
  114. {
  115. if (0 === strpos($key, '?')) {
  116. $key = substr($key, 1);
  117. $has = true;
  118. }
  119. if ($pos = strpos($key, '.')) {
  120. // 指定参数来源
  121. list($method, $key) = explode('.', $key, 2);
  122. if (!in_array($method, ['get', 'post', 'put', 'patch', 'delete', 'route', 'param', 'request', 'session', 'cookie', 'server', 'env', 'path', 'file'])) {
  123. $key = $method . '.' . $key;
  124. $method = 'param';
  125. }
  126. } else {
  127. // 默认为自动判断
  128. $method = 'param';
  129. }
  130. if (isset($has)) {
  131. return request()->has($key, $method, $default);
  132. } else {
  133. return request()->$method($key, $default, $filter);
  134. }
  135. }
  136. }
  137. if (!function_exists('input_post')) {
  138. /**
  139. * 获取输入数据 支持默认值和过滤
  140. * @param string $key 获取的变量名
  141. * @param mixed $default 默认值
  142. * @param string $filter 过滤方法
  143. * @return mixed
  144. */
  145. function input_post($key = '', $default = null, $filter = '')
  146. {
  147. return Request::instance()->request($key, $default, $filter);
  148. }
  149. }
  150. if (!function_exists('widget')) {
  151. /**
  152. * 渲染输出Widget
  153. * @param string $name Widget名称
  154. * @param array $data 传入的参数
  155. * @return mixed
  156. */
  157. function widget($name, $data = [])
  158. {
  159. return Loader::action($name, $data, 'widget');
  160. }
  161. }
  162. if (!function_exists('model')) {
  163. /**
  164. * 实例化Model
  165. * @param string $name Model名称
  166. * @param string $layer 业务层名称
  167. * @param bool $appendSuffix 是否添加类名后缀
  168. * @return \think\Model
  169. */
  170. function model($name = '', $layer = 'model', $appendSuffix = false)
  171. {
  172. return Loader::model($name, $layer, $appendSuffix);
  173. }
  174. }
  175. if (!function_exists('validate')) {
  176. /**
  177. * 实例化验证器
  178. * @param string $name 验证器名称
  179. * @param string $layer 业务层名称
  180. * @param bool $appendSuffix 是否添加类名后缀
  181. * @return \think\Validate
  182. */
  183. function validate($name = '', $layer = 'validate', $appendSuffix = false)
  184. {
  185. return Loader::validate($name, $layer, $appendSuffix);
  186. }
  187. }
  188. if (!function_exists('db')) {
  189. /**
  190. * 实例化数据库类
  191. * @param string $name 操作的数据表名称(不含前缀)
  192. * @param array|string $config 数据库配置参数
  193. * @param bool $force 是否强制重新连接
  194. * @return \think\db\Query
  195. */
  196. function db($name = '', $config = [], $force = false)
  197. {
  198. return Db::connect($config, $force)->name($name);
  199. }
  200. }
  201. if (!function_exists('controller')) {
  202. /**
  203. * 实例化控制器 格式:[模块/]控制器
  204. * @param string $name 资源地址
  205. * @param string $layer 控制层名称
  206. * @param bool $appendSuffix 是否添加类名后缀
  207. * @return \think\Controller
  208. */
  209. function controller($name, $layer = 'controller', $appendSuffix = false)
  210. {
  211. return Loader::controller($name, $layer, $appendSuffix);
  212. }
  213. }
  214. if (!function_exists('action')) {
  215. /**
  216. * 调用模块的操作方法 参数格式 [模块/控制器/]操作
  217. * @param string $url 调用地址
  218. * @param string|array $vars 调用参数 支持字符串和数组
  219. * @param string $layer 要调用的控制层名称
  220. * @param bool $appendSuffix 是否添加类名后缀
  221. * @return mixed
  222. */
  223. function action($url, $vars = [], $layer = 'controller', $appendSuffix = false)
  224. {
  225. return Loader::action($url, $vars, $layer, $appendSuffix);
  226. }
  227. }
  228. if (!function_exists('import')) {
  229. /**
  230. * 导入所需的类库 同java的Import 本函数有缓存功能
  231. * @param string $class 类库命名空间字符串
  232. * @param string $baseUrl 起始路径
  233. * @param string $ext 导入的文件扩展名
  234. * @return boolean
  235. */
  236. function import($class, $baseUrl = '', $ext = EXT)
  237. {
  238. return Loader::import($class, $baseUrl, $ext);
  239. }
  240. }
  241. if (!function_exists('vendor')) {
  242. /**
  243. * 快速导入第三方框架类库 所有第三方框架的类库文件统一放到 系统的Vendor目录下面
  244. * @param string $class 类库
  245. * @param string $ext 类库后缀
  246. * @return boolean
  247. */
  248. function vendor($class, $ext = EXT)
  249. {
  250. return Loader::import($class, VENDOR_PATH, $ext);
  251. }
  252. }
  253. if (!function_exists('dump')) {
  254. /**
  255. * 浏览器友好的变量输出
  256. * @param mixed $var 变量
  257. * @param boolean $echo 是否输出 默认为true 如果为false 则返回输出字符串
  258. * @param string $label 标签 默认为空
  259. * @return void|string
  260. */
  261. function dump($var, $echo = true, $label = null)
  262. {
  263. return Debug::dump($var, $echo, $label);
  264. }
  265. }
  266. if (!function_exists('url')) {
  267. /**
  268. * Url生成
  269. * @param string $url 路由地址
  270. * @param string|array $vars 变量
  271. * @param bool|string $suffix 生成的URL后缀
  272. * @param bool|string $domain 域名
  273. * @return string
  274. */
  275. function url($url = '', $vars = '', $suffix = true, $domain = false)
  276. {
  277. return Url::build($url, $vars, $suffix, $domain);
  278. }
  279. }
  280. if (!function_exists('session')) {
  281. /**
  282. * Session管理
  283. * @param string|array $name session名称,如果为数组表示进行session设置
  284. * @param mixed $value session值
  285. * @param string $prefix 前缀
  286. * @return mixed
  287. */
  288. function session($name, $value = '', $prefix = null)
  289. {
  290. if (is_array($name)) {
  291. // 初始化
  292. Session::init($name);
  293. } elseif (is_null($name)) {
  294. // 清除
  295. Session::clear('' === $value ? null : $value);
  296. } elseif ('' === $value) {
  297. // 判断或获取
  298. return 0 === strpos($name, '?') ? Session::has(substr($name, 1), $prefix) : Session::get($name, $prefix);
  299. } elseif (is_null($value)) {
  300. // 删除
  301. return Session::delete($name, $prefix);
  302. } else {
  303. // 设置
  304. return Session::set($name, $value, $prefix);
  305. }
  306. }
  307. }
  308. if (!function_exists('cookie')) {
  309. /**
  310. * Cookie管理
  311. * @param string|array $name cookie名称,如果为数组表示进行cookie设置
  312. * @param mixed $value cookie值
  313. * @param mixed $option 参数
  314. * @return mixed
  315. */
  316. function cookie($name, $value = '', $option = null)
  317. {
  318. if (is_array($name)) {
  319. // 初始化
  320. Cookie::init($name);
  321. } elseif (is_null($name)) {
  322. // 清除
  323. Cookie::clear($value);
  324. } elseif ('' === $value) {
  325. // 获取
  326. return 0 === strpos($name, '?') ? Cookie::has(substr($name, 1), $option) : Cookie::get($name, $option);
  327. } elseif (is_null($value)) {
  328. // 删除
  329. return Cookie::delete($name);
  330. } else {
  331. // 设置
  332. return Cookie::set($name, $value, $option);
  333. }
  334. }
  335. }
  336. if (!function_exists('cache')) {
  337. /**
  338. * 缓存管理
  339. * @param mixed $name 缓存名称,如果为数组表示进行缓存设置
  340. * @param mixed $value 缓存值
  341. * @param mixed $options 缓存参数
  342. * @param string $tag 缓存标签
  343. * @return mixed
  344. */
  345. function redis_matching_set($name,$value,$expire = null){
  346. $cache = Cache::connect(['type'=>'Redis']);
  347. return $cache->set('mt_matching_uid_'.$name, $value, $expire);
  348. }
  349. function redis_matching_get($name){
  350. $cache = Cache::connect(['type'=>'Redis']);
  351. return $cache->get('mt_matching_uid_'.$name);
  352. }
  353. function cache($name, $value = '', $options = null, $tag = null)
  354. {
  355. if (is_array($options)) {
  356. // 缓存操作的同时初始化
  357. $cache = Cache::connect($options);
  358. } elseif (is_array($name)) {
  359. // 缓存初始化
  360. return Cache::connect($name);
  361. } else {
  362. $cache = Cache::init();
  363. }
  364. if (is_null($name)) {
  365. return $cache->clear($value);
  366. } elseif ('' === $value) {
  367. // 获取缓存
  368. return 0 === strpos($name, '?') ? $cache->has(substr($name, 1)) : $cache->get($name);
  369. } elseif (is_null($value)) {
  370. // 删除缓存
  371. return $cache->rm($name);
  372. } elseif (0 === strpos($name, '?') && '' !== $value) {
  373. $expire = is_numeric($options) ? $options : null;
  374. return $cache->remember(substr($name, 1), $value, $expire);
  375. } else {
  376. // 缓存数据
  377. if (is_array($options)) {
  378. $expire = isset($options['expire']) ? $options['expire'] : null; //修复查询缓存无法设置过期时间
  379. } else {
  380. $expire = is_numeric($options) ? $options : null; //默认快捷缓存设置过期时间
  381. }
  382. if (is_null($tag)) {
  383. return $cache->set($name, $value, $expire);
  384. } else {
  385. return $cache->tag($tag)->set($name, $value, $expire);
  386. }
  387. }
  388. }
  389. }
  390. if (!function_exists('trace')) {
  391. /**
  392. * 记录日志信息
  393. * @param mixed $log log信息 支持字符串和数组
  394. * @param string $level 日志级别
  395. * @return void|array
  396. */
  397. function trace($log = '[think]', $level = 'log')
  398. {
  399. if ('[think]' === $log) {
  400. return Log::getLog();
  401. } else {
  402. Log::record($log, $level);
  403. }
  404. }
  405. }
  406. if (!function_exists('request')) {
  407. /**
  408. * 获取当前Request对象实例
  409. * @return Request
  410. */
  411. function request()
  412. {
  413. return Request::instance();
  414. }
  415. }
  416. if (!function_exists('response')) {
  417. /**
  418. * 创建普通 Response 对象实例
  419. * @param mixed $data 输出数据
  420. * @param int|string $code 状态码
  421. * @param array $header 头信息
  422. * @param string $type
  423. * @return Response
  424. */
  425. function response($data = [], $code = 200, $header = [], $type = 'html')
  426. {
  427. return Response::create($data, $type, $code, $header);
  428. }
  429. }
  430. if (!function_exists('view')) {
  431. /**
  432. * 渲染模板输出
  433. * @param string $template 模板文件
  434. * @param array $vars 模板变量
  435. * @param array $replace 模板替换
  436. * @param integer $code 状态码
  437. * @return \think\response\View
  438. */
  439. function view($template = '', $vars = [], $replace = [], $code = 200)
  440. {
  441. return Response::create($template, 'view', $code)->replace($replace)->assign($vars);
  442. }
  443. }
  444. if (!function_exists('json')) {
  445. /**
  446. * 获取\think\response\Json对象实例
  447. * @param mixed $data 返回的数据
  448. * @param integer $code 状态码
  449. * @param array $header 头部
  450. * @param array $options 参数
  451. * @return \think\response\Json
  452. */
  453. function json($data = [], $code = 200, $header = [], $options = [])
  454. {
  455. return Response::create($data, 'json', $code, $header, $options);
  456. }
  457. }
  458. if (!function_exists('jsonp')) {
  459. /**
  460. * 获取\think\response\Jsonp对象实例
  461. * @param mixed $data 返回的数据
  462. * @param integer $code 状态码
  463. * @param array $header 头部
  464. * @param array $options 参数
  465. * @return \think\response\Jsonp
  466. */
  467. function jsonp($data = [], $code = 200, $header = [], $options = [])
  468. {
  469. return Response::create($data, 'jsonp', $code, $header, $options);
  470. }
  471. }
  472. if (!function_exists('xml')) {
  473. /**
  474. * 获取\think\response\Xml对象实例
  475. * @param mixed $data 返回的数据
  476. * @param integer $code 状态码
  477. * @param array $header 头部
  478. * @param array $options 参数
  479. * @return \think\response\Xml
  480. */
  481. function xml($data = [], $code = 200, $header = [], $options = [])
  482. {
  483. return Response::create($data, 'xml', $code, $header, $options);
  484. }
  485. }
  486. if (!function_exists('redirect')) {
  487. /**
  488. * 获取\think\response\Redirect对象实例
  489. * @param mixed $url 重定向地址 支持Url::build方法的地址
  490. * @param array|integer $params 额外参数
  491. * @param integer $code 状态码
  492. * @param array $with 隐式传参
  493. * @return \think\response\Redirect
  494. */
  495. function redirect($url = [], $params = [], $code = 302, $with = [])
  496. {
  497. if (is_integer($params)) {
  498. $code = $params;
  499. $params = [];
  500. }
  501. return Response::create($url, 'redirect', $code)->params($params)->with($with);
  502. }
  503. }
  504. if (!function_exists('abort')) {
  505. /**
  506. * 抛出HTTP异常
  507. * @param integer|Response $code 状态码 或者 Response对象实例
  508. * @param string $message 错误信息
  509. * @param array $header 参数
  510. */
  511. function abort($code, $message = null, $header = [])
  512. {
  513. if ($code instanceof Response) {
  514. throw new HttpResponseException($code);
  515. } else {
  516. throw new HttpException($code, $message, null, $header);
  517. }
  518. }
  519. }
  520. if (!function_exists('halt')) {
  521. /**
  522. * 调试变量并且中断输出
  523. * @param mixed $var 调试变量或者信息
  524. */
  525. function halt($var)
  526. {
  527. dump($var);
  528. throw new HttpResponseException(new Response);
  529. }
  530. }
  531. if (!function_exists('token')) {
  532. /**
  533. * 生成表单令牌
  534. * @param string $name 令牌名称
  535. * @param mixed $type 令牌生成方法
  536. * @return string
  537. */
  538. function token($name = '__token__', $type = 'md5')
  539. {
  540. $token = Request::instance()->token($name, $type);
  541. return '<input type="hidden" name="' . $name . '" value="' . $token . '" />';
  542. }
  543. }
  544. if (!function_exists('load_relation')) {
  545. /**
  546. * 延迟预载入关联查询
  547. * @param mixed $resultSet 数据集
  548. * @param mixed $relation 关联
  549. * @return array
  550. */
  551. function load_relation($resultSet, $relation)
  552. {
  553. $item = current($resultSet);
  554. if ($item instanceof Model) {
  555. $item->eagerlyResultSet($resultSet, $relation);
  556. }
  557. return $resultSet;
  558. }
  559. }
  560. if (!function_exists('collection')) {
  561. /**
  562. * 数组转换为数据集对象
  563. * @param array $resultSet 数据集数组
  564. * @return \think\model\Collection|\think\Collection
  565. */
  566. function collection($resultSet)
  567. {
  568. $item = current($resultSet);
  569. if ($item instanceof Model) {
  570. return \think\model\Collection::make($resultSet);
  571. } else {
  572. return \think\Collection::make($resultSet);
  573. }
  574. }
  575. }