Laravel 5:从日期字段中获取年龄范围内的用户

时间:2015-05-28 21:37:02

标签: php eloquent laravel-5

如果数据库中的出生日期字段类型为日期(如1989-09-20),我在选择年龄范围内的用户时遇到问题。

查询

DB::raw("*, ( 
        3959 * acos( 
        cos(radians(?)) 
        * cos(radians(latitude))
        * cos(radians(longitude) - radians(?)) 
        + sin(radians(?)) 
        * sin(radians(latitude)))
    ) AS distance"))
->having('distance', '<', $distance)
->orderBy("distance")
->setBindings([$lat, $lng, $lat])
->whereHas('user', function($q) {
    $q->whereBetween('date_of_birth',array(Input::get('age_from'),Input::get('age_to')))
      ->where('gender',Input::get('gender'))
      ->where('title','LIKE','%'.Input::get('title').'%');
})
->with('user')
->get();

我尝试在用户模型中使用Carbon将 date_of_birth 属性转换为若干年但却无法正常工作,因为仍在查询日期格式而不是数字年。

用户模型

    <?php namespace App;

use Illuminate\Auth\Authenticatable;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Auth\Passwords\CanResetPassword;
use Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract;
use Illuminate\Contracts\Auth\CanResetPassword as CanResetPasswordContract;

class User extends Model implements AuthenticatableContract, CanResetPasswordContract {

    public function getDateOfBirthAttribute()
    {
        $ca = \Carbon\Carbon::parse($this->attributes['date_of_birth']);

        return $ca->diffInYears();
    }

}

我希望你能帮助我。

1 个答案:

答案 0 :(得分:0)

我找到了解决方案,并且正在使用此文件。

$q->whereBetween(DB::raw('TIMESTAMPDIFF(YEAR,users.date_of_birth,CURDATE())'),array(Input::get('age_from'),Input::get('age_to')));