Answers for "php convert array keys to uppercase"

PHP
19

php uppercase

//string to all uppercase
$string = "String with Mixed use of Uppercase and Lowercase";
//php string to uppercase
$string = strtoupper($string);
// = "STRING WITH MIXED USE OF UPPERCASE AND LOWERCASE"
Posted by: Guest on September-01-2020
0

php force array keys to lowercase

$lower_case_keys = array_change_key_case($array, CASE_LOWER);
Posted by: Guest on November-16-2021

Code answers related to "php convert array keys to uppercase"

Browse Popular Code Answers by Language