1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<?php /** * PHP 4.1.x Compatibility functions */
// no direct access defined( '_VALID_MOS' ) or die( 'Restricted access' );
if (!function_exists( 'array_change_key_case' )) { if (!defined('CASE_LOWER')) { define('CASE_LOWER', 0); } if (!defined('CASE_UPPER')) { define('CASE_UPPER', 1); } function array_change_key_case( $input, $case=CASE_LOWER ) { if (!is_array( $input )) { return false; } $array = array(); foreach ($input as $k=>$v) { if ($case) { $array[strtoupper( $k )] = $v; } else { $array[strtolower( $k )] = $v; } } return $array; } } ?>
|