gpt4 book ai didi

php - 将数组值显示为数组中的数字

转载 作者:行者123 更新时间:2023-12-03 23:02:55 25 4
gpt4 key购买 nike

目前我的代码显示从 1885 年到 2017 年的年份。它的作用是像这样显示年份 0 = 1885、1 = 1886。

我想要的是它像这样显示 1885 = 1885、1886 = 1886 等(这类似于汽车的制造日期)

$options = [];
for ($x = 1885; $x <= date("Y"); $x++) {
array_push($options, $x);
}

echo $this->Form->select('year', [
$options,
],[
'label' => false,
'class' => 'form-group form-control',
]);

所以我想知道如何解决我做错的事情。

最佳答案

for ($x = 1885; $x <= date("Y"); $x++) {
$options[$x] = $x;
}

关于php - 将数组值显示为数组中的数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44065558/

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