1
0

Backup.php 237 B

1234567891011121314
  1. <?php
  2. namespace app\model;
  3. use think\Model;
  4. class Backup extends Model
  5. {
  6. public function getContentAttr($value){
  7. if (empty($value)) return [];
  8. $content = json_decode($value, true);
  9. return $content;
  10. }
  11. }