gpt4 book ai didi

日期和时间的 PHP 警告

转载 作者:行者123 更新时间:2023-11-28 23:33:55 24 4
gpt4 key购买 nike

我开始使用 PHP 和 Yii 框架开发一个特定的项目。当我尝试访问该项目时,出现此警告:

date(): It is not safe to rely on the system's timezone settings. You are required to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone.

当我在 Google 上搜索时,我发现我必须取消注释并更改 datetime.zonephp.ini 文件中,然后重启 apache 服务器。但是还是有同样的问题。

请帮忙...

最佳答案

您的 php.ini 设置应如下所示:

date.timezone = "Asia/Tehran"

...然后重新启动 Apache(如果 php 作为 CGI、FCGI 或 Apache 模块运行)

如果您使用的是 PHP-FPM,请确保重新启动它:

service php-fpm restart

或者你可以在你的“index.php”中设置它:

<?php

date_default_timezone_set("Asia/Tehran");

如果您没有看到对 php.ini 所做更改的影响,请确保您正在编辑 php 使用的文件。您可以使用此功能检查运行时使用的 php.ini 位置:

<?php
phpinfo(INFO_GENERAL);

关于日期和时间的 PHP 警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36389818/

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