PHP array_change_key_case() 函数
PHP 教程
· 2019-01-21 22:59:49
实例
将数组的所有的键转换为大写字母:
<?php
$age=array("Peter"=>"35","Ben"=>"37","Joe"=>"43");
print_r(array_change_key_case($age,CASE_UPPER));
?>
$age=array("Peter"=>"35","Ben"=>"37","Joe"=>"43");
print_r(array_change_key_case($age,CASE_UPPER));
?>
定义和用法
array_change_key_case() 函数将数组的所有的键都转换为大写字母或小写字母。
语法
array_change_key_case(array,case);
参数 | 描述 |
---|---|
array | 必需。规定要使用的数组。 |
case | 可选。可能的值:
|
技术细节
返回值: | 返回带有小写字母的键的数组,或者返回带有大写字母的键的数组,或者如果 array 不是一个数组则返回 FALSE。 |
---|---|
PHP 版本: | 4.2+ |
更多实例
实例 1
将数组的所有的键转换为小写字母:
<?php
$age=array("Peter"=>"35","Ben"=>"37","Joe"=>"43");
print_r(array_change_key_case($age,CASE_LOWER));
?>
$age=array("Peter"=>"35","Ben"=>"37","Joe"=>"43");
print_r(array_change_key_case($age,CASE_LOWER));
?>
实例 2
如果运行完 array_change_key_case() 之后有两个或者更多个的键相同(比如 "b" 和 "B"),则最后的元素会覆盖其他元素:
<?php
$pets=array("a"=>"Cat","B"=>"Dog","c"=>"Horse","b"=>"Bird");
print_r(array_change_key_case($pets,CASE_UPPER));
?>
$pets=array("a"=>"Cat","B"=>"Dog","c"=>"Horse","b"=>"Bird");
print_r(array_change_key_case($pets,CASE_UPPER));
?>
点击查看所有 PHP 教程 文章: https://www.codercto.com/courses/l/5.html
Programming the Mobile Web
Maximiliano Firtman / O'Reilly Media / 2010-07-23 / $44.99
* Learn how to use your existing skills to move into mobile web development * Discover the new possibilities of mobile web development, and understand its limitations * Get detailed coverage of ......一起来看看 《Programming the Mobile Web》 这本书的介绍吧!