Whats the easiest and quickest way to loop through an array of numbers and find out if $val is in there?
Say my array is $numbers(3,5,78,35,78) and my $val=5, it would return true.
Sorry if this is simple, but... so am I :P
|
|
|||||||
|
|
If you don't care about the position of your number, you could use in_array() |
|||
|
|
in_arrayis the best. I thought of it only after postingarray_search, but since Clive suggestedin_arrayas well by that time, I removed my answer. – GolezTrol Oct 31 '11 at 20:57in_array()is basicallyarray_search(..) !== FALSE. – Marc B Oct 31 '11 at 20:59