作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我想通过我的 TYPO3 扩展的 EventRepository 中的这个函数按日期对我的“约会”进行排序。
public function findAll() {
// Sort appointments ascending
$query = $this->createQuery();
Return $query->setOrderings (
Array('appointments' => Tx_Extbase_Persistence_Query::ORDER_ASCENDING)
)->execute();
}
我需要获取数组的第二层,例如:'appointments.start_date'我的阵列看起来像这样:
images => 'originalPreviewJW__2_.jpg' (25 chars)
categories => Tx_Extbase_Persistence_ObjectStorageprototype object (2 items)
appointments => Tx_Extbase_Persistence_ObjectStorageprototype object (4 items)
000000006052eef7000000009b41588e => Tx_SzEvents_Domain_Model_Appointmentprototypepersistent entity (uid=3, pid=13)
titel => 'entertainment area' (18 chars)
startDate => DateTimeprototype object (2013-08-22T10:00:00+02:00, 1377158400)
endDate => DateTimeprototype object (2013-08-22T20:00:00+02:00, 1377194400)
最佳答案
这应该可行
public function findAll() {
// Sort appointments ascending
$query = $this->createQuery();
return $query->setOrderings (
Array('appointments.startDate' => Tx_Extbase_Persistence_Query::ORDER_ASCENDING)
)->execute();
}
关于php - extbase (TYPO3) 中的 setOrderings 用于数组的第二层,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18126156/
我想按字母顺序排列我的数据表,因为我来自丹麦,所以我也想订购 Æ、Ø 和 Å。它们的顺序是这样正确的: dk DT v1 v2 1: Brav 5 2: Brød
我正在编写一个插件并将自己的数据库表添加到 magento 数据库中。 现在我想从表中按排序顺序获取一些数据,并在下面添加了代码。 但是每次我转储最后一行的结果时,我都会按照它们在表中的顺序获取数据,
我注意到 setorder 似乎改变了它根本不应该触及的变量。一个简单的代码示例最好地解释了这一点: library(data.table) x <- 1:3 y <- 3:1 data <- dat
我想根据给定的索引序列重新排序 data.table 的行,这就是 setcolorder 对列所做的。有这个功能吗? 这是一个可重现的示例,具有预期的输出。 > DT = data.table(mt
我想通过我的 TYPO3 扩展的 EventRepository 中的这个函数按日期对我的“约会”进行排序。 public function findAll() { // Sort a
我是一名优秀的程序员,十分优秀!