Created
May 4, 2015 06:01
-
-
Save WebFikirleri/43424db47e0e670a9601 to your computer and use it in GitHub Desktop.
PHP: Türkçe Tarih
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function date_tr($format, $date = time(), $is_string = FALSE) { | |
if ($is_string) { | |
$date = strtotime($date); | |
} | |
$out = date($format, $date); | |
$replace = array( | |
'Sunday' => 'Pazar', | |
'Monday' => 'Pazartesi', | |
'Tuesday' => 'Salı', | |
'Wednesday' => 'Çarşamba', | |
'Thursday' => 'Perşembe', | |
'Friday' => 'Cuma', | |
'Saturday' => 'Cumartesi', | |
'Sun' => 'Paz', | |
'Mon' => 'Pts', | |
'Tue' => 'Sal', | |
'Wed' => 'Çrş', | |
'Thu' => 'Prş', | |
'Fri' => 'Cum', | |
'Sat' => 'Cts', | |
'January' => '', | |
'February' => '', | |
'March' => '', | |
'April' => '', | |
'May' => '', | |
'June' => '', | |
'July' => '', | |
'August' => '', | |
'September' => '', | |
'October' => '', | |
'November' => '', | |
'December' => '', | |
'Jan' => '', | |
'Feb' => '', | |
'Mar' => '', | |
'Apr' => '', | |
'May' => '', | |
'Jun' => '', | |
'Jul' => '', | |
'Aug' => '', | |
'Sep' => '', | |
'Oct' => '', | |
'Nov' => '', | |
'Dec' => '' | |
); | |
$out = strtr($out, $replace); | |
return $out; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment