在yii2中的两个日期之间搜索

时间:2015-05-19 12:33:09

标签: php yii2

日期可以用不同的格式表示。表本身看起来像这样:

   book varchar(250) NOT NULL,  
   date INT NOT NULL

现在我的问题是我无法在两个日期之间的范围内实现搜索。 例如,有5本书具有不同的日期,但开始日期开始 在31/12/14,最终日期为31/02/15。因此,当用户选择这些日期之间的范围时,它必须提供该日期范围内的所有书籍。

有没有办法在Yii2中这样做?到目前为止我找不到任何东西

更新

我正在实现一个不属于GridView的自定义过滤器,它看起来就像是桌子外面的独立框。

看起来像这样:

<div class="custom-filter">

   Date range:
     <input name="start" />
     <input name="end" />

   Book name:
     <input name="book" />

</div>

4 个答案:

答案 0 :(得分:18)

我相信这是你需要的答案:

$model = ModelName::find()
->where(['between', 'date', "2014-12-31", "2015-02-31" ])->all();

答案 1 :(得分:4)

如果以日期格式开始和结束,但数据库表中的日期是INT类型,则必须执行以下操作:

//Get values and format them in unix timestamp
$start = Yii::$app->formatter->asTimestamp(Yii::$app->request->post('start'));
$end = Yii::$app->formatter->asTimestamp(Yii::$app->request->post('end'));

//Book name from your example form
$bookName = Yii::$app->request->post('book');

//Then you can find in base:
$books = Book::find()
    ->where(['between', 'date', $start, $end])
    ->andWhere(['like', 'book', $bookName])
    ->all();

不要忘记从帖子中提供的验证值。

答案 2 :(得分:1)

假设存储为整数的日期表示unix时间戳,则可以创建模型类,并将yii\validators\DateValidator应用于startend属性。

/**
 * Class which holds all kind of searchs on Book model.
 */
class BookSearch extends Book
{
    // Custom properties to hold data from input fields
    public $start;
    public $end;

    /**
     * @inheritdoc
     */
    public function rules()
    {
        return [
            ['start', 'date', 'timestampAttribute' => 'start', 'format' => 'php:d/m/y'],
            ['end', 'date', 'timestampAttribute' => 'end', 'format' => 'php:d/m/y']
        ];
    }

    public function searchByDateRange($params)
    {
        $this->load($params);

        // When validation pass, $start and $end attributes will have their values converted to unix timestamp.
        if (!$this->validate()) {
            return false;
        }

        $query = Book::find()->andFilterWhere(['between', 'date', $this->start, $this->end]);

        return true;
    }
}

this documentation上详细了解timestampAttribute

答案 3 :(得分:0)

使用Yii2 Active Record并在两个日期之间访问图书。

public static function getBookBetweenDates($lower, $upper)
{
    return Book::find()
        ->where(['and', "date>=$lower", "date<=$upper"])
        ->all();
}

我假设您正在使用活动记录类,并且您已创建Book.php(基于表名称的相应名称)作为模型文件。