2013-01-15, 02:48:30
I found this on a site after a quick query
dont know if it helps
I think iconv should be enabled by default unless php was built specifically without it.
PHP Code:
if(WINDOWS){
echo base64_encode(iconv('ISO-8859-2', 'UTF-8',strftime("%a %d-%b-%Y",(DateAdd("d", $day, strtotime($grid_date))))))."|";
} else {
echo base64_encode(strftime("%a %d-%b-%Y",(DateAdd("d", $day, strtotime($grid_date)))))."|";
}
dont know if it helps
I think iconv should be enabled by default unless php was built specifically without it.