Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Could you trim all $_POST vars? because i have a very long list right now for trim each var. looks very unprofessional. i thought trim($_POST); would maybe work but it didnt :]

share|improve this question

6 Answers

you can do this with array_map:

$_POST = array_map('trim', $_POST);
share|improve this answer
Nicer and more elegant. – MiseryIndex Aug 26 '09 at 17:25
Right, like it even more than my own (and vote for it), wish it could do it in-place without assigning the array. – Michael Krelin - hacker Aug 26 '09 at 19:11
foreach($_POST as &$p) $p = trim($p);
share|improve this answer
Nice and elegant. – ceejayoz Aug 26 '09 at 17:18

Quick and simple:

foreach($_POST as $key => $val)
{
    $_POST[$key] = trim($val);
}
share|improve this answer

Works with multi-dimensional arrays

array_walk_recursive($_POST, function (&$val) 
{ 
    $val = trim($val); 
});
share|improve this answer

You can do this with array_walk().

share|improve this answer
The callback function for array_walk takes two parameters, one for the value and one for the key. But the second parameter of trim is intended for a list of character that should be removed from the begin and end. So it wouldn’t work. But with array_map it would. – Gumbo Aug 26 '09 at 17:22
It you wrote a simple wrapper for trim, array_walk would work in place. function aw_trim(&$str){ if(is_string($str)){ $str = trim($str); } } array_walk($_POST,'aw_trim'); – txyoji Aug 27 '09 at 0:31

The simplest, and cleanest (in my opinion), is to use the built in array_map function:

array_map('trim', $_POST);

You can also apply a method of your own by passing an array as the first callback-parameter like so:

array_map(array('My_Class', 'staticMethod'), $_POST); // Invoke a static method

array_map(array($myObject, 'objectMethod'), $_POST); 
// Invoke $myObject->objectMethod for each element of $_POST
share|improve this answer
array_map works for multidimensional arrays? – inakiabt Aug 26 '09 at 17:46
@inakiabt: No, but there is a custom implementation of array_map_recursive in the PHP manual user notes. – Alix Axel Aug 26 '09 at 17:49
@eyze: Thanks. Good to know. – inakiabt Aug 26 '09 at 18:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.