klimeryk / recalendar

ReCalendar - highly customizable calendar for ReMarkable tablets
GNU General Public License v3.0
195 stars 23 forks source link

strftime deprecated in php 8 #18

Open Hacky-The-Sheep opened 2 years ago

Hacky-The-Sheep commented 2 years ago

PHP@8.1 shows the function strftime() is deprecated. When attempting to generate, causes errors.

Will look into the simplest way to ensure future compatibility.

Screen Shot 2021-11-29 at 4 16 48 PM

Screen Shot 2021-11-29 at 4 16 34 PM

klimeryk commented 2 years ago

Thanks for the heads-up - looks like IntlDateFormatter::format is the recommended new way. Would you be interested in submitting a PR to use it instead of strftime? 🙏

I used strftime originally because DateTime::format is not locale-dependent. But I did not notice there's IntlDateFormatter instead.