I have an array like this:
$array = Array ( 0 => 'oooo', 1 => 'no', 2 => 'mmmm', 3 => 'yes' );
I would like to find the word yes. I know about array_search() , but I would like to combine yes, yes and yes.
How can i do this?
arrays php
Gowri Nov 12 2018-10-18 18:59
source share