Closed mauricesvay closed 2 years ago
strptime is being deprecated starting PHP 8.1.0. It can be replaced by date_create_from_format which was available since PHP 5.3.0.
strptime
date_create_from_format
https://www.php.net/manual/fr/function.strptime.php
This PR replaces instance of strptime by their date_create_from_format equivalent.
strptime
is being deprecated starting PHP 8.1.0. It can be replaced bydate_create_from_format
which was available since PHP 5.3.0.https://www.php.net/manual/fr/function.strptime.php
This PR replaces instance of
strptime
by theirdate_create_from_format
equivalent.