简单的PHP日期配置

发布于 2024-10-16 05:27:28 字数 176 浏览 3 评论 0原文

我正在 windowsXP 中的 localhost 上运行 easyPHP,

现在是

2011-02-07 19:46:00

但是当我尝试 PHP 函数 date() 时,它给了我:

2011-02-08 12:43:00

有人知道怎么做吗要配置这个吗?

i am running easyPHP on localhost in windowsXP

right now its

2011-02-07 19:46:00

but when i try a the PHP function date() it gives me:

2011-02-08 12:43:00

does anybody knows how to configurate this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

鲜血染红嫁衣 2024-10-23 05:27:28
date_default_timezone_set('EST');

您建议的时区不正确。它可以通过 php.ini 进行更改,但是如果 php.ini 无法访问或者您只是想确保安全,那么对代码本身进行简单添加会更理想。

尝试一下,让我知道是否有效。 EST 可能有所不同,但看起来大约是 -5:00 GMT?

祝你好运! :)

date_default_timezone_set('EST');

Your timezone like suggested was incorrect. It can be changed through php.ini, however a simple addition to the code itself would be more ideal if php.ini is inaccessible or you just want to be safe about stuff.

Give it a try, let me know if it works. EST may be something different but it seems about right -5:00 GMT?

Good luck! :)

执着的年纪 2024-10-23 05:27:28

因此,在我自己研究这个问题相当长一段时间后,我得出了以下解决方案。如果其他方法对您不起作用,请尝试缓慢而乏味的方法。

在 EasyPHP 安装文件夹中查找名为 php.ini 或 httpd.conf 的任何文件。在每个文件中,确保以下行包含您的首选时区。

date.timezone = America/New_york

这会起作用。对我来说,这是覆盖我的 php.ini 文件的 httpd.conf 文件之一。这会使事情变得难以检测。

So after toying about with this exact issue for quite some time myself, I came to the following solution. If the rest do not work for you, try the painfully slow and tedious way.

Look for any files named php.ini or httpd.conf in your EasyPHP install folder. In each of these files make sure the following line has your preferred time zone.

date.timezone = America/New_york

This will work. For me it was one of the httpd.conf files that was overriding my php.ini file. This can make things difficult to detect.

情定在深秋 2024-10-23 05:27:28

更改文件binaries\apache\conf\httpd.conf
在下面的 php_value date.timezone 上为我解决了这个问题:

# PHP Timezone
<IfModule mod_php5.c>
  php_value date.timezone "America/Godthab"
</IfModule>

Changing the file binaries\apache\conf\httpd.conf
on following php_value date.timezone did the trick for me:

# PHP Timezone
<IfModule mod_php5.c>
  php_value date.timezone "America/Godthab"
</IfModule>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文