VideoComment.php 317 B

123456789101112
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. // 视频评论
  5. class VideoComment extends Model
  6. {
  7. // 获取视频评论量
  8. public static function getVideoCommentNum($url_id){
  9. $num = static::where([['is_deleted','=',0],['url_id','=',$url_id]])->count();
  10. return numTransform($num);
  11. }
  12. }