How to fix warning from date() in PHPquot;(如何修复 PHP 中 date() 的警告)
问题描述
我在 winxp 上使用 XAMPP(PHP 版本 5.3.1).当我尝试在本地主机上调用 time() 或 date() 函数时.它将显示警告消息,
I am using XAMPP(PHP Version 5.3.1) on winxp. When I try to call time() or date() function on my localhost. It will show warning message as this,
严重性:警告
消息:date() [function.date]:它是不安全地依赖系统的时区设置.你是必需的使用 date.timezone 设置或date_default_timezone_set()功能.如果您使用任何那些方法,你还在收到此警告,您很可能时区标识符拼写错误.我们为 '8.0/no DST' 选择了 'UTC'而是
Message: date() [function.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 'UTC' for '8.0/no DST' instead
文件名:helpers/date_helper.php
Filename: helpers/date_helper.php
如何禁用警告?谢谢.
推荐答案
尝试在php.ini文件中设置date.timezone.或者您可以使用 ini_set() 或 date_default_timezone_set() 手动设置.
Try to set date.timezone in php.ini file. Or you can manually set it using ini_set() or date_default_timezone_set().
这篇关于如何修复 PHP 中 date() 的警告"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何修复 PHP 中 date() 的警告"
基础教程推荐
- php 7.4 在写入变量中的 Twig 问题 2022-01-01
- php中的foreach复选框POST 2021-01-01
- 将变量从树枝传递给 js 2022-01-01
- PHPUnit 的 Selenium 2 文档到底在哪里? 2022-01-01
- 如何在数学上评估像“2-1"这样的字符串?产生“1"? 2022-01-01
- 使用 scandir() 在目录中查找文件夹 (PHP) 2022-01-01
- Web 服务器如何处理请求? 2021-01-01
- 主题化 Drupal 7 的 Ubercart “/cart"页 2021-01-01
- Yii2 - 在运行时设置邮件传输参数 2022-01-01
- php中的PDF导出 2022-01-01
