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.
質問があります。例、PHP に変数がある場合、現在は 2013 年 8 月 31 日です。
$time=2013/09/01 08:10:00
この時点で (08:10, 1/9/2013) ユーザーに情報を提供したいのですが、どうすればよいですか?
<?php $strCDay = date('Y/m/d h:i:s'); $strFDay = '2013/09/01 08:10:00'; echo strcmp($strCDay, $strFDay) == 0 ? 'Its your day!' : 'Not your day!'; ?>
strcmp両方の日が文字列であるため、文字列関数を使用することをお勧めします。この関数strcmpは、完全一致の場合は 0 を返します。これは、タイムスタンプの比較に使用できます。
strcmp