Last active
December 14, 2015 21:09
-
-
Save o0h/5149503 to your computer and use it in GitHub Desktop.
この前の月曜日の日付を取得
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function get_chokkin_getsuyoubi(){ | |
$day = 86400; // 60*60*24; | |
$t_dow = date_create()->format('n'); | |
return date('Y-m-d', time() - ($day * ($t_dow - 1))); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment