我正在做一个日历,可能有超过1个事件与每天的日期相匹配.目前我很困惑如何发现比第一场比赛更多的array_search.这就是我现在正在做的事情.
if (array_search($date_today,$event_start) !== FALSE ) { $date_match = array_search($date_today,$event_start); $name = $event_name[$date_match]; }
我可以使用’while’或’for each’语句推进array_search以查找多个匹配项吗?如果重要的是我的日期变量是日期,如1368680400.
Documentation for array_search告诉我们:
原文链接:https://www.f2er.com/php/130332.htmlIf needle is found in haystack more than once,the first matching key is returned. To return the keys for all matching values,use array_keys() with the optional search_value parameter instead.