tools.php 347 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Administrator
  5. * Date: 2019/6/22
  6. * Time: 12:51
  7. */
  8. class tools
  9. {
  10. public static function writedebuglog($type, $data)
  11. {
  12. if (!is_string($data)) {
  13. $data = json_encode([$data, 256]);
  14. }
  15. Db::table('debug_log')->insert(['mtype' => $type, 'data' => $data]);
  16. }
  17. }