| 1234567891011121314151617181920 |
- <?php
- /**
- * Created by PhpStorm.
- * User: Administrator
- * Date: 2019/6/22
- * Time: 12:51
- */
- class tools
- {
- public static function writedebuglog($type, $data)
- {
- if (!is_string($data)) {
- $data = json_encode([$data, 256]);
- }
- Db::table('debug_log')->insert(['mtype' => $type, 'data' => $data]);
- }
- }
|