Posts by hugofcampos • 141 points
2 posts
-
1
votes1
answer97
viewsA: Why does PHP no longer parse dates with "BRST"?
That was answered here: https://stackoverflow.com/questions/48076970/why-php-does-not-parse-brst-dates-anymore Basically, several Timezone definitions have been removed in this commit. PHP has been…
-
3
votes1
answer97
viewsQ: Why does PHP no longer parse dates with "BRST"?
BRST stands for "Brasilia Summer Time" Before version 7.0.26, PHP parsed the following string: $date = new DateTime("Mon Jan 01 20:00:00 BRST 2017"); After this release, PHP returns: Fatal error:…