gpt4 book ai didi

PHP,从数组中删除?

转载 作者:行者123 更新时间:2023-12-04 18:21:36 26 4
gpt4 key购买 nike

我在一系列国家中搜索以查看是否与英国匹配,如果是,我将其拉出并将其放在下拉列表的顶部。

foreach($this->registry->stockistCountries as $value)
{
if($value['country'] == 'UK'){
$buffer .= '<option>UK</option>';
$buffer .= '<option disabled>------------------</option>';
}

}

我想知道,如果找到 UK,有没有办法从数组 $this->registry->stockistCountries 中删除它?

谢谢

最佳答案

将循环更改为:

foreach($this->registry->stockistCountries as $i => $value)
{
if($value['country'] == 'UK'){
$buffer .= '<option>UK</option>';
$buffer .= '<option disabled>------------------</option>';
unset($this->registry->stockistCountries[$i]);
}

}

关于PHP,从数组中删除?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10550894/

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