Many times we store our data in array and need to perform some additional function to the array like strtolower, strtoupper, and etc. Before i get to know this handy function, I’ve been searching for the shortest code to perform strtolower to an array in php. Thank god, finally i found array_map function and it solved my many years problem.
To strtolower an array in php, use the code below:-
Advertisements
$myarray = array('XyZ', 'AbC', 'EFG'); $myarray = array_map('strtolower', $myarray);
You may also check out the documentation on array_map
Related posts:
Symfony 1.4 - Customize Admin Generator listing to show data from foreign tables
Composer: PHP Fatal error: Allowed memory size of ... exhausted...
Speed Up and Save Your Website Bandwidth with GZip Compression
How to reduce admin generator query in Symfony 1.4
Prestashop 1.5 - How to enable add to cart button at Home Featured Product?
Symfony: PHP Fatal error: Call to a member function setData()
PHP Fatal error: Class ‘DOMDocument’ not found in …
Install eAccelerator to Optimize PHP performance
Share this with your friends:-