本文介绍了寻找相当于在关联数组中的键上工作的array_map的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
假设我有一个关联数组:
Suppose I have an associative array:
$array = array(
"key1" => "value",
"key2" => "value2");
我想将键全部大写。相比之下,我将如何做(意味着我可以将用户定义的函数应用于键名)?
And I wanted to make the keys all uppercase. How would I do than in a generalized way (meaning I could apply a user defined function to apply to the key names)?
推荐答案
您可以使用php的函数 p>
You can use the array_change_key_case function of php
<?php
$input_array = array("FirSt" => 1, "SecOnd" => 4);
print_r(array_change_key_case($input_array, CASE_UPPER));
?>
这篇关于寻找相当于在关联数组中的键上工作的array_map的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!