No Description
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 21KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730
  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\Container;
  15. use think\Db;
  16. use think\exception\HttpException;
  17. use think\exception\HttpResponseException;
  18. use think\facade\Cache;
  19. use think\facade\Config;
  20. use think\facade\Cookie;
  21. use think\facade\Debug;
  22. use think\facade\Env;
  23. use think\facade\Hook;
  24. use think\facade\Lang;
  25. use think\facade\Log;
  26. use think\facade\Request;
  27. use think\facade\Route;
  28. use think\facade\Session;
  29. use think\facade\Url;
  30. use think\Response;
  31. use think\route\RuleItem;
  32. if (!function_exists('abort')) {
  33. /**
  34. * 抛出HTTP异常
  35. * @param integer|Response $code 状态码 或者 Response对象实例
  36. * @param string $message 错误信息
  37. * @param array $header 参数
  38. */
  39. function abort($code, $message = null, $header = [])
  40. {
  41. if ($code instanceof Response) {
  42. throw new HttpResponseException($code);
  43. } else {
  44. throw new HttpException($code, $message, null, $header);
  45. }
  46. }
  47. }
  48. if (!function_exists('action')) {
  49. /**
  50. * 调用模块的操作方法 参数格式 [模块/控制器/]操作
  51. * @param string $url 调用地址
  52. * @param string|array $vars 调用参数 支持字符串和数组
  53. * @param string $layer 要调用的控制层名称
  54. * @param bool $appendSuffix 是否添加类名后缀
  55. * @return mixed
  56. */
  57. function action($url, $vars = [], $layer = 'controller', $appendSuffix = false)
  58. {
  59. return app()->action($url, $vars, $layer, $appendSuffix);
  60. }
  61. }
  62. if (!function_exists('app')) {
  63. /**
  64. * 快速获取容器中的实例 支持依赖注入
  65. * @param string $name 类名或标识 默认获取当前应用实例
  66. * @param array $args 参数
  67. * @param bool $newInstance 是否每次创建新的实例
  68. * @return mixed|\think\App
  69. */
  70. function app($name = 'think\App', $args = [], $newInstance = false)
  71. {
  72. return Container::getInstance()->make($name, $args, $newInstance);
  73. }
  74. }
  75. if (!function_exists('behavior')) {
  76. /**
  77. * 执行某个行为(run方法) 支持依赖注入
  78. * @param mixed $behavior 行为类名或者别名
  79. * @param mixed $args 参数
  80. * @return mixed
  81. */
  82. function behavior($behavior, $args = null)
  83. {
  84. return Hook::exec($behavior, $args);
  85. }
  86. }
  87. if (!function_exists('bind')) {
  88. /**
  89. * 绑定一个类到容器
  90. * @access public
  91. * @param string $abstract 类标识、接口
  92. * @param mixed $concrete 要绑定的类、闭包或者实例
  93. * @return Container
  94. */
  95. function bind($abstract, $concrete = null)
  96. {
  97. return Container::getInstance()->bindTo($abstract, $concrete);
  98. }
  99. }
  100. if (!function_exists('cache')) {
  101. /**
  102. * 缓存管理
  103. * @param mixed $name 缓存名称,如果为数组表示进行缓存设置
  104. * @param mixed $value 缓存值
  105. * @param mixed $options 缓存参数
  106. * @param string $tag 缓存标签
  107. * @return mixed
  108. */
  109. function cache($name, $value = '', $options = null, $tag = null)
  110. {
  111. if (is_array($options)) {
  112. // 缓存操作的同时初始化
  113. Cache::connect($options);
  114. } elseif (is_array($name)) {
  115. // 缓存初始化
  116. return Cache::connect($name);
  117. }
  118. if ('' === $value) {
  119. // 获取缓存
  120. return 0 === strpos($name, '?') ? Cache::has(substr($name, 1)) : Cache::get($name);
  121. } elseif (is_null($value)) {
  122. // 删除缓存
  123. return Cache::rm($name);
  124. }
  125. // 缓存数据
  126. if (is_array($options)) {
  127. $expire = isset($options['expire']) ? $options['expire'] : null; //修复查询缓存无法设置过期时间
  128. } else {
  129. $expire = is_numeric($options) ? $options : null; //默认快捷缓存设置过期时间
  130. }
  131. if (is_null($tag)) {
  132. return Cache::set($name, $value, $expire);
  133. } else {
  134. return Cache::tag($tag)->set($name, $value, $expire);
  135. }
  136. }
  137. }
  138. if (!function_exists('call')) {
  139. /**
  140. * 调用反射实例化对象或者执行方法 支持依赖注入
  141. * @param mixed $callable 类名或者callable
  142. * @param array $args 参数
  143. * @return mixed
  144. */
  145. function call($callable, array $args = [])
  146. {
  147. if (is_callable($callable)) {
  148. return Container::getInstance()->invoke($callable, $args);
  149. }
  150. return Container::getInstance()->invokeClass($callable, $args);
  151. }
  152. }
  153. if (!function_exists('class_basename')) {
  154. /**
  155. * 获取类名(不包含命名空间)
  156. *
  157. * @param string|object $class
  158. * @return string
  159. */
  160. function class_basename($class)
  161. {
  162. $class = is_object($class) ? get_class($class) : $class;
  163. return basename(str_replace('\\', '/', $class));
  164. }
  165. }
  166. if (!function_exists('class_uses_recursive')) {
  167. /**
  168. *获取一个类里所有用到的trait,包括父类的
  169. *
  170. * @param $class
  171. * @return array
  172. */
  173. function class_uses_recursive($class)
  174. {
  175. if (is_object($class)) {
  176. $class = get_class($class);
  177. }
  178. $results = [];
  179. $classes = array_merge([$class => $class], class_parents($class));
  180. foreach ($classes as $class) {
  181. $results += trait_uses_recursive($class);
  182. }
  183. return array_unique($results);
  184. }
  185. }
  186. if (!function_exists('config')) {
  187. /**
  188. * 获取和设置配置参数
  189. * @param string|array $name 参数名
  190. * @param mixed $value 参数值
  191. * @return mixed
  192. */
  193. function config($name = '', $value = null)
  194. {
  195. if (is_null($value) && is_string($name)) {
  196. if ('.' == substr($name, -1)) {
  197. return Config::pull(substr($name, 0, -1));
  198. }
  199. return 0 === strpos($name, '?') ? Config::has(substr($name, 1)) : Config::get($name);
  200. } else {
  201. return Config::set($name, $value);
  202. }
  203. }
  204. }
  205. if (!function_exists('container')) {
  206. /**
  207. * 获取容器对象实例
  208. * @return Container
  209. */
  210. function container()
  211. {
  212. return Container::getInstance();
  213. }
  214. }
  215. if (!function_exists('controller')) {
  216. /**
  217. * 实例化控制器 格式:[模块/]控制器
  218. * @param string $name 资源地址
  219. * @param string $layer 控制层名称
  220. * @param bool $appendSuffix 是否添加类名后缀
  221. * @return \think\Controller
  222. */
  223. function controller($name, $layer = 'controller', $appendSuffix = false)
  224. {
  225. return app()->controller($name, $layer, $appendSuffix);
  226. }
  227. }
  228. if (!function_exists('cookie')) {
  229. /**
  230. * Cookie管理
  231. * @param string|array $name cookie名称,如果为数组表示进行cookie设置
  232. * @param mixed $value cookie值
  233. * @param mixed $option 参数
  234. * @return mixed
  235. */
  236. function cookie($name, $value = '', $option = null)
  237. {
  238. if (is_array($name)) {
  239. // 初始化
  240. Cookie::init($name);
  241. } elseif (is_null($name)) {
  242. // 清除
  243. Cookie::clear($value);
  244. } elseif ('' === $value) {
  245. // 获取
  246. return 0 === strpos($name, '?') ? Cookie::has(substr($name, 1), $option) : Cookie::get($name);
  247. } elseif (is_null($value)) {
  248. // 删除
  249. return Cookie::delete($name);
  250. } else {
  251. // 设置
  252. return Cookie::set($name, $value, $option);
  253. }
  254. }
  255. }
  256. if (!function_exists('db')) {
  257. /**
  258. * 实例化数据库类
  259. * @param string $name 操作的数据表名称(不含前缀)
  260. * @param array|string $config 数据库配置参数
  261. * @param bool $force 是否强制重新连接
  262. * @return \think\db\Query
  263. */
  264. function db($name = '', $config = [], $force = true)
  265. {
  266. return Db::connect($config, $force)->name($name);
  267. }
  268. }
  269. if (!function_exists('debug')) {
  270. /**
  271. * 记录时间(微秒)和内存使用情况
  272. * @param string $start 开始标签
  273. * @param string $end 结束标签
  274. * @param integer|string $dec 小数位 如果是m 表示统计内存占用
  275. * @return mixed
  276. */
  277. function debug($start, $end = '', $dec = 6)
  278. {
  279. if ('' == $end) {
  280. Debug::remark($start);
  281. } else {
  282. return 'm' == $dec ? Debug::getRangeMem($start, $end) : Debug::getRangeTime($start, $end, $dec);
  283. }
  284. }
  285. }
  286. if (!function_exists('download')) {
  287. /**
  288. * 获取\think\response\Download对象实例
  289. * @param string $filename 要下载的文件
  290. * @param string $name 显示文件名
  291. * @param bool $content 是否为内容
  292. * @param integer $expire 有效期(秒)
  293. * @return \think\response\Download
  294. */
  295. function download($filename, $name = '', $content = false, $expire = 360, $openinBrowser = false)
  296. {
  297. return Response::create($filename, 'download')->name($name)->isContent($content)->expire($expire)->openinBrowser($openinBrowser);
  298. }
  299. }
  300. if (!function_exists('dump')) {
  301. /**
  302. * 浏览器友好的变量输出
  303. * @param mixed $var 变量
  304. * @param boolean $echo 是否输出 默认为true 如果为false 则返回输出字符串
  305. * @param string $label 标签 默认为空
  306. * @return void|string
  307. */
  308. function dump($var, $echo = true, $label = null)
  309. {
  310. return Debug::dump($var, $echo, $label);
  311. }
  312. }
  313. if (!function_exists('env')) {
  314. /**
  315. * 获取环境变量值
  316. * @access public
  317. * @param string $name 环境变量名(支持二级 .号分割)
  318. * @param string $default 默认值
  319. * @return mixed
  320. */
  321. function env($name = null, $default = null)
  322. {
  323. return Env::get($name, $default);
  324. }
  325. }
  326. if (!function_exists('exception')) {
  327. /**
  328. * 抛出异常处理
  329. *
  330. * @param string $msg 异常消息
  331. * @param integer $code 异常代码 默认为0
  332. * @param string $exception 异常类
  333. *
  334. * @throws Exception
  335. */
  336. function exception($msg, $code = 0, $exception = '')
  337. {
  338. $e = $exception ?: '\think\Exception';
  339. throw new $e($msg, $code);
  340. }
  341. }
  342. if (!function_exists('halt')) {
  343. /**
  344. * 调试变量并且中断输出
  345. * @param mixed $var 调试变量或者信息
  346. */
  347. function halt($var)
  348. {
  349. dump($var);
  350. throw new HttpResponseException(new Response);
  351. }
  352. }
  353. if (!function_exists('input')) {
  354. /**
  355. * 获取输入数据 支持默认值和过滤
  356. * @param string $key 获取的变量名
  357. * @param mixed $default 默认值
  358. * @param string $filter 过滤方法
  359. * @return mixed
  360. */
  361. function input($key = '', $default = null, $filter = '')
  362. {
  363. if (0 === strpos($key, '?')) {
  364. $key = substr($key, 1);
  365. $has = true;
  366. }
  367. if ($pos = strpos($key, '.')) {
  368. // 指定参数来源
  369. $method = substr($key, 0, $pos);
  370. if (in_array($method, ['get', 'post', 'put', 'patch', 'delete', 'route', 'param', 'request', 'session', 'cookie', 'server', 'env', 'path', 'file'])) {
  371. $key = substr($key, $pos + 1);
  372. } else {
  373. $method = 'param';
  374. }
  375. } else {
  376. // 默认为自动判断
  377. $method = 'param';
  378. }
  379. if (isset($has)) {
  380. return request()->has($key, $method, $default);
  381. } else {
  382. return request()->$method($key, $default, $filter);
  383. }
  384. }
  385. }
  386. if (!function_exists('json')) {
  387. /**
  388. * 获取\think\response\Json对象实例
  389. * @param mixed $data 返回的数据
  390. * @param integer $code 状态码
  391. * @param array $header 头部
  392. * @param array $options 参数
  393. * @return \think\response\Json
  394. */
  395. function json($data = [], $code = 200, $header = [], $options = [])
  396. {
  397. return Response::create($data, 'json', $code, $header, $options);
  398. }
  399. }
  400. if (!function_exists('jsonp')) {
  401. /**
  402. * 获取\think\response\Jsonp对象实例
  403. * @param mixed $data 返回的数据
  404. * @param integer $code 状态码
  405. * @param array $header 头部
  406. * @param array $options 参数
  407. * @return \think\response\Jsonp
  408. */
  409. function jsonp($data = [], $code = 200, $header = [], $options = [])
  410. {
  411. return Response::create($data, 'jsonp', $code, $header, $options);
  412. }
  413. }
  414. if (!function_exists('lang')) {
  415. /**
  416. * 获取语言变量值
  417. * @param string $name 语言变量名
  418. * @param array $vars 动态变量值
  419. * @param string $lang 语言
  420. * @return mixed
  421. */
  422. function lang($name, $vars = [], $lang = '')
  423. {
  424. return Lang::get($name, $vars, $lang);
  425. }
  426. }
  427. if (!function_exists('model')) {
  428. /**
  429. * 实例化Model
  430. * @param string $name Model名称
  431. * @param string $layer 业务层名称
  432. * @param bool $appendSuffix 是否添加类名后缀
  433. * @return \think\Model
  434. */
  435. function model($name = '', $layer = 'model', $appendSuffix = false)
  436. {
  437. return app()->model($name, $layer, $appendSuffix);
  438. }
  439. }
  440. if (!function_exists('parse_name')) {
  441. /**
  442. * 字符串命名风格转换
  443. * type 0 将Java风格转换为C的风格 1 将C风格转换为Java的风格
  444. * @param string $name 字符串
  445. * @param integer $type 转换类型
  446. * @param bool $ucfirst 首字母是否大写(驼峰规则)
  447. * @return string
  448. */
  449. function parse_name($name, $type = 0, $ucfirst = true)
  450. {
  451. if ($type) {
  452. $name = preg_replace_callback('/_([a-zA-Z])/', function ($match) {
  453. return strtoupper($match[1]);
  454. }, $name);
  455. return $ucfirst ? ucfirst($name) : lcfirst($name);
  456. } else {
  457. return strtolower(trim(preg_replace("/[A-Z]/", "_\\0", $name), "_"));
  458. }
  459. }
  460. }
  461. if (!function_exists('redirect')) {
  462. /**
  463. * 获取\think\response\Redirect对象实例
  464. * @param mixed $url 重定向地址 支持Url::build方法的地址
  465. * @param array|integer $params 额外参数
  466. * @param integer $code 状态码
  467. * @return \think\response\Redirect
  468. */
  469. function redirect($url = [], $params = [], $code = 302)
  470. {
  471. if (is_integer($params)) {
  472. $code = $params;
  473. $params = [];
  474. }
  475. return Response::create($url, 'redirect', $code)->params($params);
  476. }
  477. }
  478. if (!function_exists('request')) {
  479. /**
  480. * 获取当前Request对象实例
  481. * @return Request
  482. */
  483. function request()
  484. {
  485. return app('request');
  486. }
  487. }
  488. if (!function_exists('response')) {
  489. /**
  490. * 创建普通 Response 对象实例
  491. * @param mixed $data 输出数据
  492. * @param int|string $code 状态码
  493. * @param array $header 头信息
  494. * @param string $type
  495. * @return Response
  496. */
  497. function response($data = '', $code = 200, $header = [], $type = 'html')
  498. {
  499. return Response::create($data, $type, $code, $header);
  500. }
  501. }
  502. if (!function_exists('route')) {
  503. /**
  504. * 路由注册
  505. * @param string $rule 路由规则
  506. * @param mixed $route 路由地址
  507. * @param array $option 路由参数
  508. * @param array $pattern 变量规则
  509. * @return RuleItem
  510. */
  511. function route($rule, $route, $option = [], $pattern = [])
  512. {
  513. return Route::rule($rule, $route, '*', $option, $pattern);
  514. }
  515. }
  516. if (!function_exists('session')) {
  517. /**
  518. * Session管理
  519. * @param string|array $name session名称,如果为数组表示进行session设置
  520. * @param mixed $value session值
  521. * @param string $prefix 前缀
  522. * @return mixed
  523. */
  524. function session($name, $value = '', $prefix = null)
  525. {
  526. if (is_array($name)) {
  527. // 初始化
  528. Session::init($name);
  529. } elseif (is_null($name)) {
  530. // 清除
  531. Session::clear($value);
  532. } elseif ('' === $value) {
  533. // 判断或获取
  534. return 0 === strpos($name, '?') ? Session::has(substr($name, 1), $prefix) : Session::get($name, $prefix);
  535. } elseif (is_null($value)) {
  536. // 删除
  537. return Session::delete($name, $prefix);
  538. } else {
  539. // 设置
  540. return Session::set($name, $value, $prefix);
  541. }
  542. }
  543. }
  544. if (!function_exists('token')) {
  545. /**
  546. * 生成表单令牌
  547. * @param string $name 令牌名称
  548. * @param mixed $type 令牌生成方法
  549. * @return string
  550. */
  551. function token($name = '__token__', $type = 'md5')
  552. {
  553. $token = Request::token($name, $type);
  554. return '<input type="hidden" name="' . $name . '" value="' . $token . '" />';
  555. }
  556. }
  557. if (!function_exists('trace')) {
  558. /**
  559. * 记录日志信息
  560. * @param mixed $log log信息 支持字符串和数组
  561. * @param string $level 日志级别
  562. * @return array|void
  563. */
  564. function trace($log = '[think]', $level = 'log')
  565. {
  566. if ('[think]' === $log) {
  567. return Log::getLog();
  568. } else {
  569. Log::record($log, $level);
  570. }
  571. }
  572. }
  573. if (!function_exists('trait_uses_recursive')) {
  574. /**
  575. * 获取一个trait里所有引用到的trait
  576. *
  577. * @param string $trait
  578. * @return array
  579. */
  580. function trait_uses_recursive($trait)
  581. {
  582. $traits = class_uses($trait);
  583. foreach ($traits as $trait) {
  584. $traits += trait_uses_recursive($trait);
  585. }
  586. return $traits;
  587. }
  588. }
  589. if (!function_exists('url')) {
  590. /**
  591. * Url生成
  592. * @param string $url 路由地址
  593. * @param string|array $vars 变量
  594. * @param bool|string $suffix 生成的URL后缀
  595. * @param bool|string $domain 域名
  596. * @return string
  597. */
  598. function url($url = '', $vars = '', $suffix = true, $domain = false)
  599. {
  600. return Url::build($url, $vars, $suffix, $domain);
  601. }
  602. }
  603. if (!function_exists('validate')) {
  604. /**
  605. * 实例化验证器
  606. * @param string $name 验证器名称
  607. * @param string $layer 业务层名称
  608. * @param bool $appendSuffix 是否添加类名后缀
  609. * @return \think\Validate
  610. */
  611. function validate($name = '', $layer = 'validate', $appendSuffix = false)
  612. {
  613. return app()->validate($name, $layer, $appendSuffix);
  614. }
  615. }
  616. if (!function_exists('view')) {
  617. /**
  618. * 渲染模板输出
  619. * @param string $template 模板文件
  620. * @param array $vars 模板变量
  621. * @param integer $code 状态码
  622. * @param callable $filter 内容过滤
  623. * @return \think\response\View
  624. */
  625. function view($template = '', $vars = [], $code = 200, $filter = null)
  626. {
  627. return Response::create($template, 'view', $code)->assign($vars)->filter($filter);
  628. }
  629. }
  630. if (!function_exists('widget')) {
  631. /**
  632. * 渲染输出Widget
  633. * @param string $name Widget名称
  634. * @param array $data 传入的参数
  635. * @return mixed
  636. */
  637. function widget($name, $data = [])
  638. {
  639. $result = app()->action($name, $data, 'widget');
  640. if (is_object($result)) {
  641. $result = $result->getContent();
  642. }
  643. return $result;
  644. }
  645. }
  646. if (!function_exists('xml')) {
  647. /**
  648. * 获取\think\response\Xml对象实例
  649. * @param mixed $data 返回的数据
  650. * @param integer $code 状态码
  651. * @param array $header 头部
  652. * @param array $options 参数
  653. * @return \think\response\Xml
  654. */
  655. function xml($data = [], $code = 200, $header = [], $options = [])
  656. {
  657. return Response::create($data, 'xml', $code, $header, $options);
  658. }
  659. }
  660. if (!function_exists('yaconf')) {
  661. /**
  662. * 获取yaconf配置
  663. *
  664. * @param string $name 配置参数名
  665. * @param mixed $default 默认值
  666. * @return mixed
  667. */
  668. function yaconf($name, $default = null)
  669. {
  670. return Config::yaconf($name, $default);
  671. }
  672. }