array_change_key_case
<code><span>$input</span> = <span>array</span>(<span>"startTime"</span>=><span>1</span>,<span>"endTime"</span>=><span>2</span>); <span>$output</span> = array_change_key_case(<span>$input</span>, CASE_LOWER); print_r(<span>$output</span>); <span>//result</span><span>#array([starttime]=>1, [endtime]=>2)</span></code>
The above introduces [php function]--array function--array_change_key_case, including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.