英文:
PHP convert text timezome to abbreviated ? like 'America/New_York' to 'EST'
问题
是的,您可以将数据库中的时区文本格式轻松显示为3个字符的形式。
英文:
so i have timezone in my DB in text format - is there a way to easily display is as the 3 character form ?
答案1
得分: 0
在PHP中,您可以像这样实现:
<?php
$timezoneText = '太平洋标准时间'; // 或者您所使用的时区
$timezone = new DateTimeZone($timezoneText);
$currentTime = new DateTime('now', $timezone);
$abbreviation = $currentTime->format('T');
echo $abbreviation;
?>
英文:
In php you can do it like this
<?php
$timezoneText = 'Pacific Standard Time'; // or whatever you have
$timezone = new DateTimeZone($timezoneText);
$currentTime = new DateTime('now', $timezone);
$abbreviation = $currentTime->format('T');
echo $abbreviation;
?>
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论