====== 日付の取得 ====== ※「この前の日曜日」と「先週の日曜日」は違うので注意 * echo date("Y/m/d"); * // 本日の日付 echo date("Y/m/d"); * echo date("Y/m/d H:i"); * echo date("Y/m/d H:i"); * echo date("Y/m/d H:i", strtotime("2010/9/8 6:05")); * echo date("Y/m/d H:i", strtotime("2010/9/8 6:05")); * echo date("Y/m/d H:i", strtotime("+23 hours",strtotime("2010/9/8 6:05"))); * echo date("Y/m/d H:i", strtotime("+23 hours",strtotime("2010/9/8 6:05"))); * echo date("Y/m/d H:i", strtotime("-9 hours",strtotime("2010/9/8 6:05"))); * echo date("Y/m/d H:i", strtotime("-9 hours",strtotime("2010/9/8 6:05"))); * echo date("YmdHi"); * echo date("YmdHi");