gpt4 book ai didi

php - 创建具有所有 NULL 值的关联数组的最简洁方法是什么?

转载 作者:行者123 更新时间:2023-12-02 07:26:49 24 4
gpt4 key购买 nike

例如,创建以下数组?

$myArray=array(
'a'=>null,
'b'=>null,
'c'=>null,
'd'=>null,
'e'=>null,
'f'=>null,
'g'=>null,
'h'=>null
);

最佳答案

$myArray = array_fill_keys(range('a','h'), null);

Demo

关于php - 创建具有所有 NULL 值的关联数组的最简洁方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27454917/

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