Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ertankayalar/5840973 to your computer and use it in GitHub Desktop.
Save ertankayalar/5840973 to your computer and use it in GitHub Desktop.
start and end dates of week
<?php
// calculate start and end dates of the week
// 0 = Sunday
echo date("Y-m-d", strtotime(date("Y").'W'.date('W')."0"));
// 7 = Saturday
echo date("Y-m-d", strtotime(date("Y").'W'.date('W')."7"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment