Localize current time in PHP
Trying to display current time with PHP (using this ): $date = date('m/d/Y h:i:s a', time()); echo $date; As simple as it gets. How do I localize it? I want to translate the months and days to Hebrew. Thanks. Zend_Date is completely internationalized. You should check that out for a simple way to do it: All full and abbreviated names of months and weekdays are supported for more than 130 languages. Methods support both input and the output of dates using the localized names of months and weekdays, in the conventional format associated with each locale. Actually, I don't think it is quite