obrienplum
New Member
I have an array like this:\[code\]Array( [0] => "<[email protected]>" [1] => "<[email protected]>" [2] => "<[email protected]>")\[/code\]Now I want to remove \[code\]"<"\[/code\] and \[code\]">"\[/code\] from above array so that it look like\[code\]Array( [0] => "[email protected]" [1] => "[email protected]" [2] => "[email protected]")\[/code\]How to do this in php? Please help me out.I'm using \[code\]array_filter()\[/code\]; is there any easier way to do that except \[code\]array_filter()\[/code\]?