php Programming Glossary: timezoneid
How to check is timezone identifier valid from code? http://stackoverflow.com/questions/5816960/how-to-check-is-timezone-identifier-valid-from-code it should return FALSE . function isValidTimezoneId timezoneId # ...function body... return # TRUE or FALSE So when I pass.. return # TRUE or FALSE So when I pass TZ identifier using timezoneId string in function I need boolean result. Well what I have so.. I've got is something like this function isValidTimezoneId timezoneId savedZone date_default_timezone_get # save current zone res..
|