Voting

: min(seven, zero)?
(Example: nine)

The Note You're Voting On

RCube
14 years ago
To convert an entire array to lower, I prefer this method;

<?php
function arraytolower(array $array, $round = 0){
return
unserialize(strtolower(serialize($array)));
}
?>

3 lines of code seem a lot less overhead than 10-40.
If there's any intrinsic problem with this method, please post it.

<< Back to user notes page

To Top