tomyvi / php-tracks-recorder

PHP front & backend for owntracks & overland payload
GNU General Public License v3.0
66 stars 34 forks source link

Replace deprecated strptime by date_parse_from_format #30

Closed mauricesvay closed 2 years ago

mauricesvay commented 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.

https://www.php.net/manual/fr/function.strptime.php

This PR replaces instance of strptime by their date_create_from_format equivalent.