| <?php |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| |
| |
| |
|
|
| use think\Cache; |
| use think\Config; |
| use think\Cookie; |
| use think\Db; |
| use think\Debug; |
| use think\exception\HttpException; |
| use think\exception\HttpResponseException; |
| use think\Lang; |
| use think\Loader; |
| use think\Log; |
| use think\Model; |
| use think\Request; |
| use think\Response; |
| use think\Session; |
| use think\Url; |
| use think\View; |
|
|
| if (!function_exists('load_trait')) { |
| |
| |
| |
| |
| |
| |
| function load_trait($class, $ext = EXT) |
| { |
| return Loader::import($class, TRAIT_PATH, $ext); |
| } |
| } |
|
|
| if (!function_exists('exception')) { |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| function exception($msg, $code = 0, $exception = '') |
| { |
| $e = $exception ?: '\think\Exception'; |
| throw new $e($msg, $code); |
| } |
| } |
|
|
| if (!function_exists('debug')) { |
| |
| |
| |
| |
| |
| |
| |
| function debug($start, $end = '', $dec = 6) |
| { |
| if ('' == $end) { |
| Debug::remark($start); |
| } else { |
| return 'm' == $dec ? Debug::getRangeMem($start, $end) : Debug::getRangeTime($start, $end, $dec); |
| } |
| } |
| } |
|
|
| if (!function_exists('lang')) { |
| |
| |
| |
| |
| |
| |
| |
| function lang($name, $vars = [], $lang = '') |
| { |
| return Lang::get($name, $vars, $lang); |
| } |
| } |
|
|
| if (!function_exists('config')) { |
| |
| |
| |
| |
| |
| |
| |
| function config($name = '', $value = null, $range = '') |
| { |
| if (is_null($value) && is_string($name)) { |
| return 0 === strpos($name, '?') ? Config::has(substr($name, 1), $range) : Config::get($name, $range); |
| } else { |
| return Config::set($name, $value, $range); |
| } |
| } |
| } |
|
|
| if (!function_exists('input')) { |
| |
| |
| |
| |
| |
| |
| |
| function input($key = '', $default = null, $filter = '') |
| { |
| if (0 === strpos($key, '?')) { |
| $key = substr($key, 1); |
| $has = true; |
| } |
| if ($pos = strpos($key, '.')) { |
| |
| list($method, $key) = explode('.', $key, 2); |
| if (!in_array($method, ['get', 'post', 'put', 'patch', 'delete', 'route', 'param', 'request', 'session', 'cookie', 'server', 'env', 'path', 'file'])) { |
| $key = $method . '.' . $key; |
| $method = 'param'; |
| } |
| } else { |
| |
| $method = 'param'; |
| } |
| if (isset($has)) { |
| return request()->has($key, $method, $default); |
| } else { |
| return request()->$method($key, $default, $filter); |
| } |
| } |
| } |
|
|
| if (!function_exists('widget')) { |
| |
| |
| |
| |
| |
| |
| function widget($name, $data = []) |
| { |
| return Loader::action($name, $data, 'widget'); |
| } |
| } |
|
|
| if (!function_exists('model')) { |
| |
| |
| |
| |
| |
| |
| |
| function model($name = '', $layer = 'model', $appendSuffix = false) |
| { |
| return Loader::model($name, $layer, $appendSuffix); |
| } |
| } |
|
|
| if (!function_exists('validate')) { |
| |
| |
| |
| |
| |
| |
| |
| function validate($name = '', $layer = 'validate', $appendSuffix = false) |
| { |
| return Loader::validate($name, $layer, $appendSuffix); |
| } |
| } |
|
|
| if (!function_exists('db')) { |
| |
| |
| |
| |
| |
| |
| |
| function db($name = '', $config = [], $force = false) |
| { |
| return Db::connect($config, $force)->name($name); |
| } |
| } |
|
|
| if (!function_exists('controller')) { |
| |
| |
| |
| |
| |
| |
| |
| function controller($name, $layer = 'controller', $appendSuffix = false) |
| { |
| return Loader::controller($name, $layer, $appendSuffix); |
| } |
| } |
|
|
| if (!function_exists('action')) { |
| |
| |
| |
| |
| |
| |
| |
| |
| function action($url, $vars = [], $layer = 'controller', $appendSuffix = false) |
| { |
| return Loader::action($url, $vars, $layer, $appendSuffix); |
| } |
| } |
|
|
| if (!function_exists('import')) { |
| |
| |
| |
| |
| |
| |
| |
| function import($class, $baseUrl = '', $ext = EXT) |
| { |
| return Loader::import($class, $baseUrl, $ext); |
| } |
| } |
|
|
| if (!function_exists('vendor')) { |
| |
| |
| |
| |
| |
| |
| function vendor($class, $ext = EXT) |
| { |
| return Loader::import($class, VENDOR_PATH, $ext); |
| } |
| } |
|
|
| if (!function_exists('dump')) { |
| |
| |
| |
| |
| |
| |
| |
| function dump($var, $echo = true, $label = null) |
| { |
| return Debug::dump($var, $echo, $label); |
| } |
| } |
|
|
| if (!function_exists('url')) { |
| |
| |
| |
| |
| |
| |
| |
| |
| function url($url = '', $vars = '', $suffix = true, $domain = false) |
| { |
| return Url::build($url, $vars, $suffix, $domain); |
| } |
| } |
|
|
| if (!function_exists('session')) { |
| |
| |
| |
| |
| |
| |
| |
| function session($name, $value = '', $prefix = null) |
| { |
| if (is_array($name)) { |
| |
| Session::init($name); |
| } elseif (is_null($name)) { |
| |
| Session::clear('' === $value ? null : $value); |
| } elseif ('' === $value) { |
| |
| return 0 === strpos($name, '?') ? Session::has(substr($name, 1), $prefix) : Session::get($name, $prefix); |
| } elseif (is_null($value)) { |
| |
| return Session::delete($name, $prefix); |
| } else { |
| |
| return Session::set($name, $value, $prefix); |
| } |
| } |
| } |
|
|
| if (!function_exists('cookie')) { |
| |
| |
| |
| |
| |
| |
| |
| function cookie($name, $value = '', $option = null) |
| { |
| if (is_array($name)) { |
| |
| Cookie::init($name); |
| } elseif (is_null($name)) { |
| |
| Cookie::clear($value); |
| } elseif ('' === $value) { |
| |
| return 0 === strpos($name, '?') ? Cookie::has(substr($name, 1), $option) : Cookie::get($name, $option); |
| } elseif (is_null($value)) { |
| |
| return Cookie::delete($name); |
| } else { |
| |
| return Cookie::set($name, $value, $option); |
| } |
| } |
| } |
|
|
| if (!function_exists('cache')) { |
| |
| |
| |
| |
| |
| |
| |
| |
| function cache($name, $value = '', $options = null, $tag = null) |
| { |
| if (is_array($options)) { |
| |
| $cache = Cache::connect($options); |
| } elseif (is_array($name)) { |
| |
| return Cache::connect($name); |
| } else { |
| $cache = Cache::init(); |
| } |
|
|
| if (is_null($name)) { |
| return $cache->clear($value); |
| } elseif ('' === $value) { |
| |
| return 0 === strpos($name, '?') ? $cache->has(substr($name, 1)) : $cache->get($name); |
| } elseif (is_null($value)) { |
| |
| return $cache->rm($name); |
| } elseif (0 === strpos($name, '?') && '' !== $value) { |
| $expire = is_numeric($options) ? $options : null; |
| return $cache->remember(substr($name, 1), $value, $expire); |
| } else { |
| |
| if (is_array($options)) { |
| $expire = isset($options['expire']) ? $options['expire'] : null; |
| } else { |
| $expire = is_numeric($options) ? $options : null; |
| } |
| if (is_null($tag)) { |
| return $cache->set($name, $value, $expire); |
| } else { |
| return $cache->tag($tag)->set($name, $value, $expire); |
| } |
| } |
| } |
| } |
|
|
| if (!function_exists('trace')) { |
| |
| |
| |
| |
| |
| |
| function trace($log = '[think]', $level = 'log') |
| { |
| if ('[think]' === $log) { |
| return Log::getLog(); |
| } else { |
| Log::record($log, $level); |
| } |
| } |
| } |
|
|
| if (!function_exists('request')) { |
| |
| |
| |
| |
| function request() |
| { |
| return Request::instance(); |
| } |
| } |
|
|
| if (!function_exists('response')) { |
| |
| |
| |
| |
| |
| |
| |
| |
| function response($data = [], $code = 200, $header = [], $type = 'html') |
| { |
| return Response::create($data, $type, $code, $header); |
| } |
| } |
|
|
| if (!function_exists('view')) { |
| |
| |
| |
| |
| |
| |
| |
| |
| function view($template = '', $vars = [], $replace = [], $code = 200) |
| { |
| return Response::create($template, 'view', $code)->replace($replace)->assign($vars); |
| } |
| } |
|
|
| if (!function_exists('json')) { |
| |
| |
| |
| |
| |
| |
| |
| |
| function json($data = [], $code = 200, $header = [], $options = []) |
| { |
| return Response::create($data, 'json', $code, $header, $options); |
| } |
| } |
|
|
| if (!function_exists('jsonp')) { |
| |
| |
| |
| |
| |
| |
| |
| |
| function jsonp($data = [], $code = 200, $header = [], $options = []) |
| { |
| return Response::create($data, 'jsonp', $code, $header, $options); |
| } |
| } |
|
|
| if (!function_exists('xml')) { |
| |
| |
| |
| |
| |
| |
| |
| |
| function xml($data = [], $code = 200, $header = [], $options = []) |
| { |
| return Response::create($data, 'xml', $code, $header, $options); |
| } |
| } |
|
|
| if (!function_exists('redirect')) { |
| |
| |
| |
| |
| |
| |
| |
| |
| function redirect($url = [], $params = [], $code = 302, $with = []) |
| { |
| if (is_integer($params)) { |
| $code = $params; |
| $params = []; |
| } |
| return Response::create($url, 'redirect', $code)->params($params)->with($with); |
| } |
| } |
|
|
| if (!function_exists('abort')) { |
| |
| |
| |
| |
| |
| |
| function abort($code, $message = null, $header = []) |
| { |
| if ($code instanceof Response) { |
| throw new HttpResponseException($code); |
| } else { |
| throw new HttpException($code, $message, null, $header); |
| } |
| } |
| } |
|
|
| if (!function_exists('halt')) { |
| |
| |
| |
| |
| function halt($var) |
| { |
| dump($var); |
| throw new HttpResponseException(new Response); |
| } |
| } |
|
|
| if (!function_exists('token')) { |
| |
| |
| |
| |
| |
| |
| function token($name = '__token__', $type = 'md5') |
| { |
| $token = Request::instance()->token($name, $type); |
| return '<input type="hidden" name="' . $name . '" value="' . $token . '" />'; |
| } |
| } |
|
|
| if (!function_exists('load_relation')) { |
| |
| |
| |
| |
| |
| |
| function load_relation($resultSet, $relation) |
| { |
| $item = current($resultSet); |
| if ($item instanceof Model) { |
| $item->eagerlyResultSet($resultSet, $relation); |
| } |
| return $resultSet; |
| } |
| } |
|
|
| if (!function_exists('collection')) { |
| |
| |
| |
| |
| |
| function collection($resultSet) |
| { |
| $item = current($resultSet); |
| if ($item instanceof Model) { |
| return \think\model\Collection::make($resultSet); |
| } else { |
| return \think\Collection::make($resultSet); |
| } |
| } |
| } |
|
|