I am currently using date function to print out today's date. While doing this, I realized that the setlocale function does not work for Korean unfortunately so I am now wondering is there any way to directly translate from English to Korean through one to one mapping.
so currently I have
setlocale(LC_CTYPE, 'ko_KR,eucKR');
$today = date("Y년 m월 d일 l", strtotime('today'));
This prints 2014년 9월 12일 Monday and I would like to change Monday to 월.
So instead of relying on setlocale I want to know if it is possible to directly change this like:
Monday => 월 etc.