How to convert array values to lowercase in PHP?

前端 未结 10 782
北恋
北恋 2020-11-30 19:26

How can I convert all values in an array to lowercase in PHP?

Something like array_change_key_case?

10条回答
  •  暖寄归人
    2020-11-30 20:11

    You could use array_map(), set the first parameter to 'strtolower' (including the quotes) and the second parameter to $lower_case_array.

提交回复
热议问题