**格式:**
~~~
Cache::get([name : string = null], [type : string = null])
~~~
**参数描述:**
| 参数名 | 参数描述 | 可选值 |
| --- | --- | --- |
| name | 缓存的文件名 | |
| type | 日志的文件类型 | local(本地),redis |
**例子:**
~~~
$r = Cache::get('sys.txt', 'test');
print_r($r);
~~~