Skip to content

Instantly share code, notes, and snippets.

@WebFikirleri
Created May 4, 2015 06:01
Show Gist options
  • Save WebFikirleri/43424db47e0e670a9601 to your computer and use it in GitHub Desktop.
Save WebFikirleri/43424db47e0e670a9601 to your computer and use it in GitHub Desktop.
PHP: Türkçe Tarih
<?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