gpt4 book ai didi

php - 如何从数据库中获取日期并显示而不重复?

转载 作者:行者123 更新时间:2023-11-29 02:35:04 26 4
gpt4 key购买 nike

我有一个函数可以根据每条记录从数据库中提取所有日期。

public function getAllYears() {

$collection = Mage::getModel('press/press')->getCollection()->getYears();

return $collection;

}

并将其显示为:

<?php  

$coll = $this->getAllYears();

?>


<?php foreach ($coll as $list): ?>

<?php echo $list["year"]; ?>
<?php endforeach; ?>

它给了我所有的年份(日期),而不关心重复,而我想要的是同一日期不能重复。

平均同一年不得重复。有帮助吗?

最佳答案

也许将显示代码更改为:

<?php
$years = array();
$coll = $this->getAllYears();
foreach ($coll as $list)
$years[] = $list['year'];
$years = array_unique($years);
?>

<?php foreach ($years as $year): ?>
<?php echo $year; ?>
<?php endforeach; ?>

关于php - 如何从数据库中获取日期并显示而不重复?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6583704/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com