Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
選択リスト要素にdrupalフォームAPIを使用して、時間のリスト(例:1:00 AM、2:00 AM…..12PM)を生成する方法はありますか?そうでない場合、これを行うための最良の方法は何ですか?
PHPでは、使用できます
foreach(range(1,24) as $time) { $hours[] = date("g:i a", strtotime($time.":00:00")); }