本文整理匯總了PHP中eZ\Publish\Core\Persistence\Database\SelectQuery::orderBy方法的典型用法代碼示例。如果您正苦於以下問題:PHP SelectQuery::orderBy方法的具體用法?PHP SelectQuery::orderBy怎麽用?PHP SelectQuery::orderBy使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類eZ\Publish\Core\Persistence\Database\SelectQuery
的用法示例。
在下文中一共展示了SelectQuery::orderBy方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: listVersionsHelper
/**
* Helper for {@see listVersions()} and {@see listVersionsForUser()} that filters duplicates
* that are the result of the cartesian product performed by createVersionInfoFindQuery().
*
* @param \eZ\Publish\Core\Persistence\Database\SelectQuery $query
*
* @return string[][]
*/
private function listVersionsHelper(SelectQuery $query)
{
$query->orderBy($this->dbHandler->quoteColumn('id', 'ezcontentobject_version'));
$statement = $query->prepare();
$statement->execute();
$results = array();
$previousId = null;
foreach ($statement->fetchAll(\PDO::FETCH_ASSOC) as $row) {
if ($row['ezcontentobject_version_id'] == $previousId) {
continue;
}
$previousId = $row['ezcontentobject_version_id'];
$results[] = $row;
}
return $results;
}
示例2: applyOrderBy
/**
* Apply order by parts of sort clauses to query
*
* @param \eZ\Publish\Core\Persistence\Database\SelectQuery $query
*/
public function applyOrderBy(SelectQuery $query)
{
foreach ($this->sortColumns as $column => $direction) {
$query->orderBy($column, $direction === Query::SORT_ASC ? SelectQuery::ASC : SelectQuery::DESC);
}
// @todo Review needed
// The following line was added because without it, loading sub user groups through the Public API
// fails with the database error "Unknown column sort_column_0". The change does not break any
// integration tests or legacy persistence tests, but it can break something else, so review is needed
// Discussion: https://github.com/ezsystems/ezpublish-kernel/commit/8749d0977307858c3e2a7d82f3be90fa21973357#L1R102
$this->sortColumns = array();
}