Created
February 7, 2017 10:48
-
-
Save victorknust/53e85ae3e9b67083e917d4b9d7b81fa7 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 days_of_this_week() | |
{ | |
$data = strtotime(date('Y-m-d')); | |
$ano = date('o', $data); | |
$semana = date('W', $data); | |
for($i = 1; $i <= 7; $i++) { | |
$dias[] = date("m/d/Y l", strtotime($ano . 'W' . $semana . $i)); | |
} | |
return $dias; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment