Basically, I want to strip html, trim, and rmeove whitespace characters from my Array Array's
Ive tried, array_walk,Array_map, Array_walk_recursive, Plus other self built functions, But I just cant do it.
My array keys arnt numeric.
Heres an example code to work with, Hope some1 here maybe able to solve it.
Thanks
Code: Select all
<?php
$Array = array(array(" RedArrow", "<p>Php));
print "<PRE>";
print_r($Array);
print "</PRE>";
?>