I had some serialized data that I unserialized into an array, which looks something like this:
array("1","2","3","a1","a2","a3")
I'd like to be able to match only the values that contain an "a" so that I could do something like:
if($has_an_a) { ... }
and
foreach($value_containing_a) { ...}
Any help would be greatly appreciated.