gpt4 book ai didi

PHP foreach, if 语句

转载 作者:行者123 更新时间:2023-12-05 08:44:46 26 4
gpt4 key购买 nike

我有一个表格,其中列出了几个元素及其到期日期。

我需要一个函数来表示“如果过期日期晚于今天(对于每个元素),则不显示”。

这看起来很简单,但我卡住了!


编辑

<?php foreach($codes->result_array() as $row):?>
<tr>
<td><?php print $row['description']?></td>
<td><?php print $row['credits']?></td>
<td><?php print $row['code']?></td>
<td><? echo date("F jS, Y", strtotime($row['exp_date']));?></td>
<td><? echo date("F jS, Y", strtotime($row['create_date']));?></td>
<td>
<!-- Icons -->
<a href="<? echo base_url()?>admin/home/editCode/<?php print $row['id']?>" title="Edit"><img src="<? echo base_url()?>assets/images/icons/pencil.png" alt="Edit" /></a>
<a href="<? echo base_url()?>admin/home/deleteCode/<?php print $row['id']?>" title="Delete" class="delete-code"><img src="<? echo base_url()?>assets/images/icons/cross.png" alt="Delete" /></a>
</td>
<?php endforeach;?>

最佳答案

这是一个非常基本的例子。

foreach($elements as $element)
{
if(strtotime($element['expiration_date']) < now())
{
echo $element['expiration_date'];
}
}

关于PHP foreach, if 语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2115300/

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