Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If I have this array:

array("  hey  ", "bla  ", "  test");

and I want to trim all of them, How can I do that?

The array after the trim:

array("hey", "bla", "test");
share|improve this question

2 Answers

up vote 35 down vote accepted

array_map() is what you need:

$result = array_map('trim', $source_array);
share|improve this answer
Thanks its work :D – Daniel Jul 20 '11 at 22:54

array_map() applies a given callback to every value of an array and return the results as a new array.

$array = array_map('trim', $array);
share|improve this answer
Thanks its work :D – Daniel Jul 20 '11 at 22:54

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.