标签:des .com method use dna pre ase src mic
$array
[, int $case
= CASE_LOWER ] ) : arrayarray_change_key_case() 将 array
数组中的所有键名改为全小写或大写。本函数不改变数字索引。
<?php /** * Created by PhpStorm. * User: mac * Date: 2019/4/13 * Time: 09:51 */ $arr = [‘NAMe‘=>‘hello‘,‘Age‘=>18,‘hobbY‘=>‘internet‘]; echo "<pre>"; $res = array_change_key_case($arr,CASE_LOWER); print_r($res); print_r($arr);
标签:des .com method use dna pre ase src mic
原文地址:https://www.cnblogs.com/php-linux/p/10699946.html