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.
私はこのようなことをしようとしています:
「完了予定日」が過去 30 日以内の場合は、これを行います。そうでない場合は、これを行います。
それをphpで書くにはどうすればいいですか?
UNIXタイムスタンプとして「終了日」があると仮定すると、次のようなことを試します。
$month = 60 * 60 * 24 * 30; // month in seconds if (time() - $closingTime < $month) { // within the last 30 days ... } else { // the closing date it longer ago ... }