Skip to content

Instantly share code, notes, and snippets.

@o0h
Last active December 14, 2015 21:09
Show Gist options
  • Save o0h/5149503 to your computer and use it in GitHub Desktop.
Save o0h/5149503 to your computer and use it in GitHub Desktop.
この前の月曜日の日付を取得
<?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