如何修复 PHP 中 date() 的警告"

How to fix warning from date() in PHPquot;(如何修复 PHP 中 date() 的警告)
本文介绍了如何修复 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() 的警告"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Convert JSON integers and floats to strings(将JSON整数和浮点数转换为字符串)
in php how do I use preg replace to turn a url into a tinyurl(在php中,如何使用preg替换将URL转换为TinyURL)
all day appointment for ics calendar file wont work(ICS日历文件的全天约会不起作用)
trim function is giving unexpected values php(Trim函数提供了意外的值php)
Basic PDO connection to MySQL(到MySQL的基本PDO连接)
PHP number_format returns 1.00(Php number_Format返回1.00)