How to convert array values to lowercase in PHP?

前端 未结 10 794
北恋
北恋 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:16

    You can also use a combination of array_flip() and array_change_key_case(). See this post

提交回复
热议问题