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.
日付に年を追加および削除したい
私はこのコードを持っています:
$yearbefore = date("Y",strtotime("-1 year")); $yearnext = date("Y",strtotime("+1 year"));
これにより、現在の日付から年が追加および削除されますが、変数の別の年から年が必要な場合はどうなりますか?
$year = "2010";
これはどのように行うことができますか?
$date = '2013-11-01'; $seconds_in_year = 31536000; echo date('y-m-d', strtotime($date) - $seconds_in_year);