helper.php 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604
  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 cache($name, $value = '', $options = null, $tag = null)
  346. {
  347. if (is_array($options)) {
  348. // 缓存操作的同时初始化
  349. $cache = Cache::connect($options);
  350. } elseif (is_array($name)) {
  351. // 缓存初始化
  352. return Cache::connect($name);
  353. } else {
  354. $cache = Cache::init();
  355. }
  356. if (is_null($name)) {
  357. return $cache->clear($value);
  358. } elseif ('' === $value) {
  359. // 获取缓存
  360. return 0 === strpos($name, '?') ? $cache->has(substr($name, 1)) : $cache->get($name);
  361. } elseif (is_null($value)) {
  362. // 删除缓存
  363. return $cache->rm($name);
  364. } elseif (0 === strpos($name, '?') && '' !== $value) {
  365. $expire = is_numeric($options) ? $options : null;
  366. return $cache->remember(substr($name, 1), $value, $expire);
  367. } else {
  368. // 缓存数据
  369. if (is_array($options)) {
  370. $expire = isset($options['expire']) ? $options['expire'] : null; //修复查询缓存无法设置过期时间
  371. } else {
  372. $expire = is_numeric($options) ? $options : null; //默认快捷缓存设置过期时间
  373. }
  374. if (is_null($tag)) {
  375. return $cache->set($name, $value, $expire);
  376. } else {
  377. return $cache->tag($tag)->set($name, $value, $expire);
  378. }
  379. }
  380. }
  381. }
  382. if (!function_exists('trace')) {
  383. /**
  384. * 记录日志信息
  385. * @param mixed $log log信息 支持字符串和数组
  386. * @param string $level 日志级别
  387. * @return void|array
  388. */
  389. function trace($log = '[think]', $level = 'log')
  390. {
  391. if ('[think]' === $log) {
  392. return Log::getLog();
  393. } else {
  394. Log::record($log, $level);
  395. }
  396. }
  397. }
  398. if (!function_exists('request')) {
  399. /**
  400. * 获取当前Request对象实例
  401. * @return Request
  402. */
  403. function request()
  404. {
  405. return Request::instance();
  406. }
  407. }
  408. if (!function_exists('response')) {
  409. /**
  410. * 创建普通 Response 对象实例
  411. * @param mixed $data 输出数据
  412. * @param int|string $code 状态码
  413. * @param array $header 头信息
  414. * @param string $type
  415. * @return Response
  416. */
  417. function response($data = [], $code = 200, $header = [], $type = 'html')
  418. {
  419. return Response::create($data, $type, $code, $header);
  420. }
  421. }
  422. if (!function_exists('view')) {
  423. /**
  424. * 渲染模板输出
  425. * @param string $template 模板文件
  426. * @param array $vars 模板变量
  427. * @param array $replace 模板替换
  428. * @param integer $code 状态码
  429. * @return \think\response\View
  430. */
  431. function view($template = '', $vars = [], $replace = [], $code = 200)
  432. {
  433. return Response::create($template, 'view', $code)->replace($replace)->assign($vars);
  434. }
  435. }
  436. if (!function_exists('json')) {
  437. /**
  438. * 获取\think\response\Json对象实例
  439. * @param mixed $data 返回的数据
  440. * @param integer $code 状态码
  441. * @param array $header 头部
  442. * @param array $options 参数
  443. * @return \think\response\Json
  444. */
  445. function json($data = [], $code = 200, $header = [], $options = [])
  446. {
  447. return Response::create($data, 'json', $code, $header, $options);
  448. }
  449. }
  450. if (!function_exists('jsonp')) {
  451. /**
  452. * 获取\think\response\Jsonp对象实例
  453. * @param mixed $data 返回的数据
  454. * @param integer $code 状态码
  455. * @param array $header 头部
  456. * @param array $options 参数
  457. * @return \think\response\Jsonp
  458. */
  459. function jsonp($data = [], $code = 200, $header = [], $options = [])
  460. {
  461. return Response::create($data, 'jsonp', $code, $header, $options);
  462. }
  463. }
  464. if (!function_exists('xml')) {
  465. /**
  466. * 获取\think\response\Xml对象实例
  467. * @param mixed $data 返回的数据
  468. * @param integer $code 状态码
  469. * @param array $header 头部
  470. * @param array $options 参数
  471. * @return \think\response\Xml
  472. */
  473. function xml($data = [], $code = 200, $header = [], $options = [])
  474. {
  475. return Response::create($data, 'xml', $code, $header, $options);
  476. }
  477. }
  478. if (!function_exists('redirect')) {
  479. /**
  480. * 获取\think\response\Redirect对象实例
  481. * @param mixed $url 重定向地址 支持Url::build方法的地址
  482. * @param array|integer $params 额外参数
  483. * @param integer $code 状态码
  484. * @param array $with 隐式传参
  485. * @return \think\response\Redirect
  486. */
  487. function redirect($url = [], $params = [], $code = 302, $with = [])
  488. {
  489. if (is_integer($params)) {
  490. $code = $params;
  491. $params = [];
  492. }
  493. return Response::create($url, 'redirect', $code)->params($params)->with($with);
  494. }
  495. }
  496. if (!function_exists('abort')) {
  497. /**
  498. * 抛出HTTP异常
  499. * @param integer|Response $code 状态码 或者 Response对象实例
  500. * @param string $message 错误信息
  501. * @param array $header 参数
  502. */
  503. function abort($code, $message = null, $header = [])
  504. {
  505. if ($code instanceof Response) {
  506. throw new HttpResponseException($code);
  507. } else {
  508. throw new HttpException($code, $message, null, $header);
  509. }
  510. }
  511. }
  512. if (!function_exists('halt')) {
  513. /**
  514. * 调试变量并且中断输出
  515. * @param mixed $var 调试变量或者信息
  516. */
  517. function halt($var)
  518. {
  519. dump($var);
  520. throw new HttpResponseException(new Response);
  521. }
  522. }
  523. if (!function_exists('token')) {
  524. /**
  525. * 生成表单令牌
  526. * @param string $name 令牌名称
  527. * @param mixed $type 令牌生成方法
  528. * @return string
  529. */
  530. function token($name = '__token__', $type = 'md5')
  531. {
  532. $token = Request::instance()->token($name, $type);
  533. return '<input type="hidden" name="' . $name . '" value="' . $token . '" />';
  534. }
  535. }
  536. if (!function_exists('load_relation')) {
  537. /**
  538. * 延迟预载入关联查询
  539. * @param mixed $resultSet 数据集
  540. * @param mixed $relation 关联
  541. * @return array
  542. */
  543. function load_relation($resultSet, $relation)
  544. {
  545. $item = current($resultSet);
  546. if ($item instanceof Model) {
  547. $item->eagerlyResultSet($resultSet, $relation);
  548. }
  549. return $resultSet;
  550. }
  551. }
  552. if (!function_exists('collection')) {
  553. /**
  554. * 数组转换为数据集对象
  555. * @param array $resultSet 数据集数组
  556. * @return \think\model\Collection|\think\Collection
  557. */
  558. function collection($resultSet)
  559. {
  560. $item = current($resultSet);
  561. if ($item instanceof Model) {
  562. return \think\model\Collection::make($resultSet);
  563. } else {
  564. return \think\Collection::make($resultSet);
  565. }
  566. }
  567. }