Created
July 12, 2020 14:16
-
-
Save infinitbility/68423590812daaa501f133963ca1b6f9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
# inArray example | |
$fruits = ['Banana', 'Blackcurrant', 'Blueberry', 'Chili pepper', 'Cranberry', 'Eggplant', 'Gooseberry']; | |
# You get true or false | |
$result = in_array("Blueberry", $fruits); | |
# output true | |
# if value not available | |
$result = in_array("Apple", $fruits); | |
# output false | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment