TimeRange.php 406 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: shenyang
  5. * Date: 2018/10/18
  6. * Time: 上午9:44
  7. */
  8. namespace app\common\helpers\FormParam;
  9. class TimeRange extends BaseFormParamType
  10. {
  11. public function format($key,$value)
  12. {
  13. $timeRange = array_map(function ($time) {
  14. return substr($time,0,10);
  15. },$value);
  16. return $this->builder->whereBetween($key,$timeRange);
  17. }
  18. }