<?php $a = 'abc'; if($a among array('are','abc','xyz','lmn')) echo 'true'; ?>
Suppose I have the code above, how to write the statement "if($a among...)"? Thank you
Use the in_array() function.
in_array()
Manual says:
Searches haystack for needle using loose comparison unless strict is set.
Example:
<?php $a = 'abc'; if (in_array($a, array('are','abc','xyz','lmn'))) { echo "Got abc"; } ?>
1.4m articles
1.4m replys
5 comments
57.0k users