Top Menu

Tag Archives Translate date

 i got a requirment wherein i user add date in US(English) format but user want to display spanish language/or Other Language.First Method :/* Windows con apachesetlocale(LC_TIME, 'Spanish'); *//* Apache con linux *//* setlocale(LC_TIME, 'es_ES'); */// setlocale(LC_TIME, 'de_DE'); // echo strftime('%A, %d. %B %Y');  /* setlocale(LC_TIME, 'es_MX'); */setlocale(LC_TIME, 'es_ES'); //pase language code echo $fecha=strftime('%B %d %Y',strtotime('01-09-2012'));// Output septiembre 01 2012Second Method function converttospanish($paramdate){$str=$paramdate;$month = array("","enero", "febrero",…

Close