Table of Contents
回复内容:
Home Backend Development PHP Tutorial 你的PHP项目中还在用时间戳么?

你的PHP项目中还在用时间戳么?

Jun 06, 2016 pm 08:23 PM
php

time()的最大范围是 1901 年 12 月 13 日 20:45:54 到 2038 年 1 月 19 日 03:14:07。

还有20年时间,这时候写项目还要用时间戳么?

如果一直用时间戳形式,到了2038年,有什么替代方案?

回复内容:

time()的最大范围是 1901 年 12 月 13 日 20:45:54 到 2038 年 1 月 19 日 03:14:07。

还有20年时间,这时候写项目还要用时间戳么?

如果一直用时间戳形式,到了2038年,有什么替代方案?

不需要担心,到时候官方会升级PHP版本解决

这个是系统的事 ,是当时设计的32位达到了上限。
可以用64位。
也可以不用管,反正到时候你肯定不再写代码了,而且,20年的时间,你确定你的项目可以活那么久?

参考资料:
http://stackoverflow.com/questions/5826219/time-after-2038
http://stackoverflow.com/questions/2012589/php-mysql-year-2038-bug-what-is-it-how-to-solve-it
https://en.wikipedia.org/wiki/Year_2038_problem

你们提问和回答之前有做过验证吗?仅仅只凭脑中一想就决定了php有2038bug?

~# date -s 2040/12/20
Thu Dec 20 00:00:00 CST 2040

~# php -r "echo time();"
2239545608

~# php -r "echo date('Ymd His;" time());
20401220 000015

当然,你们在32位的Windows xp上开发,你们活该low

必须严肃的指明一个问题:由于可能处理未来的日期,所以2038问题在少部分应用中“到时解决”也已经晚了,必须提前应对。例如:万年历、时间戳计算、贷款计算等程序。

但是与C/C++/C#/Rust这样的静态类型语言不同,PHP对整形的类型限定是极弱的——PHP的整形仅仅等同于平台上的signed int,不支持unsigned,也不支持缩短取值范围(官方文档)。

因此对PHP程序本身而言,时间戳数字和相关的DateTime对象,能够无修改的迁移到64位从而解决2038年问题。

比较麻烦的是数据库部分。目前大致的状况是:

  • MySQL的TIMESTAMP使用int32,所以只支持到2038

  • MySQL的各种兼容实现,基本上有同样的问题

  • PgSQL的timestamp底层存储使用int64,上层卡一个公元1465001年的上限值

  • SQLite根本不提供日期类型,自己用bigint存就好了

简而言之:如果你确有立刻存储2038年以后时间戳的需求,请在MySQL中直接使用BIGINT。

long够用么?php的时间戳我记得是没毫秒部分的

还在使用时间戳 别的我不知道眼前的需求当然是眼前的方法来满足和实现

ISO 8601

20年你的项目已经老掉牙了 所以不用担心 PHP版本更新下这问题就解决了

让人想起了当年的千年虫问题

请使用DateTime类来处理

想想有次做个项目,我判断如果超过了2025年,后面的逻辑就失效了,反正到时候这个项目肯定活不了那么久,就好笑。

32位MySQL也是可以使用bigint类型存储64位整数的,再不放心,你可以用varchar嘛.时间戳字段类型用bigint,64位整型最大值(2^64)/2-1=9223372036854775807足够了.服务器用64位Linux,这时PHP_INT_MAX的最大值也为(2^64)/2-1=9223372036854775807.

那个时候代码肯定不时我维护,啊哈哈哈

那个时候 = = 我不知道还写不写代码。。。。

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles