2024 日本 PHP 研討會

SolrDocument::sort

(PECL solr >= 0.9.2)

SolrDocument::sort排序文件中的欄位

說明

public SolrDocument::sort(int $sortOrderBy, int $sortDirection = SolrDocument::SORT_ASC): bool

The fields are rearranged according to the specified criteria and sort direction
   
   Fields can be sorted by boost values, field names and number of values.
   
   The sortOrderBy parameter must be one of :
   
   * SolrDocument::SORT_FIELD_NAME
   * SolrDocument::SORT_FIELD_BOOST_VALUE
   * SolrDocument::SORT_FIELD_VALUE_COUNT
   
   The sortDirection can be one of :
   
   * SolrDocument::SORT_DEFAULT
   * SolrDocument::SORT_ASC
   * SolrDocument::SORT_DESC
   
   The default way is to sort in ascending order.

參數

sortOrderBy

排序準則。

sortDirection

排序方向。

回傳值

成功時回傳 true,失敗時回傳 false

新增註解

使用者貢獻的註解

此頁面尚無使用者提供的註釋。
To Top