PHP 8.5.0 Alpha 2 available for testing

Voting

: one minus one?
(Example: nine)

The Note You're Voting On

rustamabd at gmail dot com
15 years ago
Don't forget about the array_map() function, it may be easier to use!

Here's how to lower-case all elements in an array:

<?php
$arr
= array_map('strtolower', $arr);
?>

<< Back to user notes page

To Top