How to convert array values to lowercase in PHP? -


how can convert values in array lowercase in php?

something array_change_key_case?

use array_map():

$yourarray = array_map('strtolower', $yourarray); 

Comments

Popular posts from this blog

How do you change vbulletin's home page to the forums instead of the default (CMS or Activity Stream)? -

c++ - Troubles when compiling phash program -