format("Y-m-d"); } public static function contains($array, $str) { foreach($array as $item) { if ( str_contains(strtolower($str), strtolower($item) ) ) { return true; } } return false; } }