我有一个这样的数组:
$entryArray = array();
$i = 0;
foreach ($entities as $value){
$entryArray[$i]['modul'] = $value->getModul()->getName();
$entryArray[$i]['matches']['date'] = $value->getDate();
$entryArray[$i]['matches']['tonality'] = $value->getTonality()->getName();
$entryArray[$i]['matches']['author'] = $value->getAccountname();
$entryArray[$i]['matches']['content'] = $value->getContent();
$entryArray[$i]['matches']['follower'] = $value->getFollower();
$entryArray[$i]['matches']['link'] = $value->getlink();
}
没有“匹配”和没有子属性,它可以正常工作。这是我的模板:
我想用模块对表进行分类:
模1表1
模2表2
在幻灯片结束后我想要一张新幻灯片。
非常感谢大家如何帮助我;)