Last active
March 21, 2019 16:00
-
-
Save progmult/d93767bd9cf643d2ee1e8ab802999cad to your computer and use it in GitHub Desktop.
Первое сентября текущего учебного года
This file contains hidden or 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
/** | |
* @return false|int Unix Timestamp первого сентября текущего учебного года | |
*/ | |
function EYearFDate() | |
{ | |
$format = 'd.m.Y'; | |
$EYearFDate = '01.09.' . date('Y'); | |
if (time() < strtotime($EYearFDate)) $EYearFDate = '01.09.' . (date('Y') - 1); | |
return strtotime($EYearFDate); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment