如何在PHP中设置印度尼西亚时区。

huangapple go评论88阅读模式
英文:

how to set indonesia time zone in php

问题

我想尝试在PHP语言中设置印度尼西亚的默认时区,但没有成功。我正在使用这个PHP函数来设置默认时区 date_default_timezone_set();

这是我的代码,我在这里尝试设置默认时区:

<?php
date_default_timezone_set("Asia/Indonesia");
?>

如果有人知道如何做到这一点,请帮助我设置印度尼西亚的时区。

英文:

I want to try set default time zone of indonesia in php language. but not getting success. i am using this php funciton to set default time zone datedefault timezoneset();

this is my code and here i am trying to set default timezine

&lt;?php
date_default_timezone_set(&quot;Asia/Indonesia&quot;);
?&gt;

if any one know how to do this please help me to set timezone of indonesia

答案1

得分: 1

"date_default_timezone_set('Asia/Jakarta');"因为没有'Asia/Indonesia'

参考:https://www.php.net/manual/en/timezones.asia.php

英文:

It's date_default_timezone_set(&#39;Asia/Jakarta&#39;); as there is no Asia/Indonesia

Ref: https://www.php.net/manual/en/timezones.asia.php

huangapple
  • 本文由 发表于 2023年6月19日 15:19:39
  • 转载请务必保留本文链接:https://go.coder-hub.com/76504412.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定