php check if a value is in an array code example
Example 1: in_array php
<?php
$os = array("Apple", "Banana", "Lemon");
if (in_array("Apple", $os)) {
echo "Yeah. Exist Apple";
}
if (!in_array("Buleberry", $os)) {
echo "Oh, Don't Exist Blueberry!!!";
}
?>
Example 2: check null in_array php
if (!empty($data_days) && in_array(1, $data_days, true)){ // use numeric value 1, not string