Türkçe yazdırdığım fonksiyon;
setlocale(LC_TIME, 'tr_TR');
return strftime('%e %B %Y', strtotime($date));Sorunumu şununla çözdümsetlocale(LC_TIME, 'tr_TR.UTF-8', 'tr_TR', 'Turkish');
Örnek resim

4
●213
setlocale(LC_TIME, 'tr_TR');
return strftime('%e %B %Y', strtotime($date));Sorunumu şununla çözdümsetlocale(LC_TIME, 'tr_TR.UTF-8', 'tr_TR', 'Turkish');


setlocale(LC_TIME, 'tr_TR');
return utf8_encode(strftime('%e %B %Y', strtotime($date)));