| 1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace app\common\model;
- use think\Model;
- class Cache extends Model
- {
- public function call($method)
- {
- $method = '_' . strtolower($method);
- if (method_exists($this, $method)) {
- return $this->$method();
- } else {
- return false;
- }
- }
- /**
- * 基本设置
- * @return array
- */
- private function _config()
- {
- $result = db('config')->select();
- if (is_array($result)) {
- $list_config = array();
- foreach ($result as $k => $v) {
- $list_config[$v['code']] = $v['value'];
- }
- }
- unset($result);
- return $list_config;
- }
- }
|