Text.php 515 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. namespace app\api\model;
  3. use think\Model;
  4. class Text extends Model
  5. {
  6. // 表名
  7. protected $name = 'text';
  8. // 自动写入时间戳字段
  9. protected $autoWriteTimestamp = 'int';
  10. // 定义时间戳字段名
  11. protected $createTime = false;
  12. protected $updateTime = false;
  13. protected $deleteTime = false;
  14. // 追加属性
  15. protected $append = [];
  16. public static function getText($title)
  17. {
  18. return self::where('title', $title)->value('text') ?: "";
  19. }
  20. }