Voting

: max(five, one)?
(Example: nine)

The Note You're Voting On

@jfredys
14 years ago
I was looking for trimming all the elements in an array, I found this as the simplest solution:

<?php
array_walk
($ids, create_function('&$val', '$val = trim($val);'));
?>

<< Back to user notes page

To Top