gpt4 book ai didi

php - 从 PHP 中的 foreach 中排除以 '#' 开头的数组键?

转载 作者:行者123 更新时间:2023-12-02 17:48:54 24 4
gpt4 key购买 nike

我有一个 Drupal 表单数组,它使用前缀“#”来指示给定的数组键包含元数据而不是实际值。我如何遍历除键以“#”开头的数组元素之外的所有数组元素?

最佳答案

foreach( $array as $key => $value ) {
if( $key[0] === "#" ) {
continue;
}

//Do work
}

关于php - 从 PHP 中的 foreach 中排除以 '#' 开头的数组键?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11051707/

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