gpt4 book ai didi

php - PHP 或 JavaScript 中的世界时钟 API

转载 作者:行者123 更新时间:2023-11-28 02:52:28 27 4
gpt4 key购买 nike

我只是想问一下我们在哪里可以找到像这样显示世界时钟的代码LINK这不取决于我的电脑时间..

有没有相关的插件?或者我可以简单地调用的函数..?

任何帮助将不胜感激..

最佳答案

Javascript:http://www.proglogic.com/code/javascript/time/worldclock.php

可能太复杂了:http://worldtimeengine.com/api/code

自己做起来可能不太难,PHP 具有非常好的日期函数,当与正确的时区一起使用时,您可以轻松获取世界上任何地区的时间。

示例:(来自 http://www.bigresource.com/Tracker/Track-php-thNhheBb/ )

<?php

$tz = date("Z"); //timezone offset of server in seconds

$est = 3600 * -5; // -0500 gmt
$cst = 3600 * -6;
$mst = 3600 * -7;
$pst = 3600 * -8;
$hast = 3600 * -10;

// add (or subtract) the appropriate number of seconds from the offset to recalculate the time
echo date("h:i A", strtotime("now +" . ($hast - $tz) . " seconds"));

?>

http://php.net/manual/en/timezones.php

您可以将其与 GeoIP 结合使用,GeoIP 是 apache/php 的一个模块,它使用 MaxMind 数据库来解析来自访问者 IP 的位置信息。

关于php - PHP 或 JavaScript 中的世界时钟 API,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3486198/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com