如何使用 Solarium 按日期过滤
How to filter by date with Solarium
如何在 php 日光浴室中添加一个子句以按日期过滤?
像省略日期 > 今天的所有结果。
$query = $client->createSelect();
$query->createFilterQuery('myDateField')->setQuery(
sprintf('myDateField:%s', /*WHAT TO PUT HERE?*/)
);
谢谢
您的代码将在 solr 的日光浴室中:
$query->createFilterQuery('myDateField')->setQuery(
sprintf('myDateField:[2020-11-10T00:00:00Z TO NOW]')
);
如何在 php 日光浴室中添加一个子句以按日期过滤? 像省略日期 > 今天的所有结果。
$query = $client->createSelect();
$query->createFilterQuery('myDateField')->setQuery(
sprintf('myDateField:%s', /*WHAT TO PUT HERE?*/)
);
谢谢
您的代码将在 solr 的日光浴室中:
$query->createFilterQuery('myDateField')->setQuery(
sprintf('myDateField:[2020-11-10T00:00:00Z TO NOW]')
);