notepad++ ile açtığımda sadece şunlar gözüküyor


$months = array(
'Jan',
'Feb',
'Mar',
'Apr',
'May',
'Jun',
'Jul',
'Aug',
'Sep',
'Oct',
'Nov',
'Dec'
);
$weekday = array(
'Monday',
'Tuesday',
'Wednesday',
'Thursday',
'Friday',
'Saturday',
'Sunday',
);
$id_months = intval(strftime("%m", strtotime($data_event))) - 1;
$id_weekday = intval(strftime("%u", strtotime($data_event))) - 1;
$trans_months = htmlentities(utf8_decode($months[$id_months]));
$trans_weekday = htmlentities(utf8_decode($weekday[$id_weekday]));
$pretty_date_M = $trans_months;
$pretty_date_w = $trans_weekday;