The PHP Timezone Converter is a utility library for seamless conversion between Windows and IANA (Olson) timezones, enabling interoperability and enhancing date/time handling across different systems. Ideal for projects requiring compatibility with various timezone standards, this library simplifies the conversion process, making your application more versatile and user-friendly.
Use Composer to install the PHP Timezone Converter into your project:
composer require abdulsametsahin/php-timezone-converter
The Timezone Converter can be used statically, offering straightforward methods for conversion:
use Abdulsametsahin\TimezoneConverter\TimezoneConverter;
$windowsTimezone = TimezoneConverter::toWindows('Europe/Istanbul');
echo $windowsTimezone; // Outputs corresponding Windows timezone
$olsonTimezone = TimezoneConverter::toOlson('Turkey Standard Time');
echo $olsonTimezone; // Outputs 'Europe/Istanbul'
Both conversion methods throw an InvalidArgumentException
if the provided timezone is invalid or not supported.
try {
$invalid = TimezoneConverter::toWindows('Invalid/Timezone');
} catch (\InvalidArgumentException $e) {
echo $e->getMessage(); // Outputs 'Invalid timezone: Invalid/Timezone'
}
Contributions are welcome! Please feel free to submit pull requests or open issues to improve the library or add more features.