search
php development timeAug 08, 2016 am 09:27 AM
echointstrftimestringstrtotime

1, get local timestamp
PHP uses the mktime() function to convert a time into a UNIX timestamp value. The timestamp is a long integer, including the UNIX era (January 1, 1070). Many times are based on this as the starting point. Interested friends can search for it. There must be stories in it.
The syntax format of the mktime() function is as follows:
int mktime(int time,int minute,int second,int month,int day,int year,int [is_dis])
The parameters of the mktime() function are explained in the following table:

2. Get the time and date

The current UNIX timestamp through the time() function in php. The syntax format is as follows:
int time(void)
The date() function in PHP is used to get the current time and date. The date() function format is as follows:
date(string format,int timestamp)
The date format functions are as shown in the following table:

getdate() function is mainly used to obtain relevant information in dates. The format of getdate() is as follows:
array getdate(int timestamp)
The returned array elements are as shown in the following table:

The specific sample code is as follows:

<code><span><span><?php </span><span>$array</span> = getdate();
<span>echo</span><span>$array</span>[<span>'year'</span>].<span>"-"</span>.<span>$array</span>[<span>'mon'</span>].<span>"-"</span>.<span>$array</span>[<span>'mday'</span>];
<span>?></span></span></span></code>

The running results are as follows:

3. Check the validity of the date
Checking the validity of the date is mainly implemented through the checkdate() function. The specific syntax is as follows:
bool checkdate(int month,int day,int year)
Let’s use code to implement it below:

<code><span><?php </span><span>$year</span> =<span>2011</span>;
<span>$month</span> =<span>2</span>;
<span>$day</span> =<span>31</span>;
<span>echo</span> var_dump(checkdate(<span>$day</span>,<span>$month</span>,<span>$year</span>));
<span>?></span></span></code>

The running results are:

4, output the formatted time and date
This is mainly achieved through the date() function.
The format parameters are as follows:

5, first the localized time and date

The localization of time and date is mainly achieved through the setlocale() function.
The specific syntax is as follows:
string setlocale(string category,string locale)
The options for the parameter category are as shown in the following table:

If the parameter locale is empty, the locale or lang value of the system variable will be used, otherwise the localization environment specified by locale will be applied. For example, en_US is the localized environment of the United States, chs refers to Simplified Chinese, and cht refers to Traditional Chinese.

strftime() function
The strftime() function formats the output time and date according to the locale environment
The syntax format is as follows:
string strftime( string format, int timestamp)



The specific example code is as follows:

<code><span><?php </span>setlocale(LC_ALL,<span>"en_US"</span>);
<span>echo</span><span>"美国格式:"</span>.strftime(<span>"Today is %A"</span>).<span>"\n"</span>;
setlocale(LC_ALL,<span>"chs"</span>);
<span>echo</span><span>"中文简体格式:"</span>.strftime(<span>"今天是:%A"</span>).<span>"\n"</span>;
setlocale(LC_ALL,<span>"cht"</span>);
<span>echo</span><span>"繁体中文格式:"</span>.strftime(<span>"今天是 :%A"</span>).<span>"\n"</span>;


<span>?></span></span></code>

The running results are as follows:

6, parse the time and date into UNIX timestamp
It is mainly implemented through the strtotime() function.
int strtotime(string time,[,int time])
This function has two parameters. If time is an absolute time, the now parameter has no effect. If the format of the time parameter is relative time, then the corresponding time is provided by now. If now time is not provided, the corresponding time is the current time. Returns false if parsing fails.
The sample code is as follows:

<code><span><span><?php </span><span>echo</span> strtotime(<span>"now"</span>).<span>"\n"</span>;    <span>//当前时间的时间戳</span><span>echo</span><span>"输出时间:"</span>.date(<span>"Y-m-d H:i:s"</span>,strtotime(<span>"now"</span>)).<span>"\n"</span>;  <span>//按照格式要求输出当前的时间</span><span>echo</span> strtotime(<span>"21 May 2009"</span>).<span>"\n"</span>;     <span>//输出指定时间的时间戳</span><span>echo</span><span>"输出时间:"</span>.date(<span>"Y-m-d H:i:s"</span>,strtotime(<span>"21 May 2009"</span>)).<span>"\n"</span>;  <span>//按照格式输出指定时间的时间</span><span>echo</span> strtotime(<span>"+3 day"</span>).<span>"\n"</span>;  <span>// 输出三天以后的时间戳</span><span>echo</span><span>"输出时间:"</span>.date(<span>"Y-m-d H:i:s"</span>,strtotime(<span>"+3 day"</span>)).<span>"\n"</span>;  <span>//按照格式输出三天后的时间</span><span>echo</span> strtotime(<span>"+1 week"</span>).<span>"\n"</span>;    <span>//输出一周以后的时间戳</span><span>echo</span><span>"输出时间:"</span>.date(<span>"Y-m-d H:i:s"</span>,strtotime(<span>"+1 week"</span>)).<span>"\n"</span>;   <span>//按照格式输出一周以后的时间</span><span>echo</span> strtotime(<span>"+1 week 2 days 3 hours 4 minutes"</span>).<span>"\n"</span>;
<span>echo</span> strtotime(<span>"next week"</span>).<span>"\n"</span>;
<span>echo</span> strtotime(<span>"last Monday"</span>).<span>"\n"</span>;


<span>?></span></span></span></code>

The running results are as follows:

The above introduces the time of PHP development, including aspects of content. I hope it will be helpful to friends who are interested in PHP tutorials.

Statement
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
PHP中int类型转换为字节的方法详解PHP中int类型转换为字节的方法详解Mar 06, 2024 pm 06:18 PM

PHP中int类型转换为字节的方法详解在PHP中,我们经常需要将整数类型(int)转换为字节(Byte)类型,比如在处理网络数据传输、文件处理或者加密算法等场景中。本文将详细介绍如何将int类型转换为字节类型,以及提供具体的代码示例。1.int类型与字节的关系在计算机领域,基本数据类型int表示整数,而字节(Byte)是计算机存储单位,通常是8位二进制数据

C++程序将double类型的变量转换为int类型C++程序将double类型的变量转换为int类型Aug 25, 2023 pm 08:25 PM

在C++中,int类型的变量只能保存正整数或负整数值;它们不能保存小数值。有float和double值可用于此目的。为了存储小数点后最多七位的小数,创建了双精度数据类型。整数到双精度数据类型的转换可以由编译器自动完成(称为“隐式”转换),也可以由程序员向编译器显式请求(称为“显式”转换)。在接下来的部分中,我们将介绍各种转换方法。隐式转换编译器自动执行隐式类型转换。要实现这一点,需要两个变量——一个是浮点类型,另一个是整数类型。当我们简单地将浮点值或变量分配给整数变量时,编译器将处理所有其他事情

五个精选的Go语言开源项目,带你探索技术世界五个精选的Go语言开源项目,带你探索技术世界Jan 30, 2024 am 09:08 AM

在当今科技快速发展的时代,编程语言也如雨后春笋般涌现出来。其中一门备受瞩目的语言就是Go语言,它以其简洁、高效、并发安全等特性受到了许多开发者的喜爱。Go语言以其强大的生态系统而著称,其中有许多优秀的开源项目。本文将介绍五个精选的Go语言开源项目,带领读者一起探索Go语言开源项目的世界。KubernetesKubernetes是一个开源的容器编排引擎,用于自

Go语言开发必备:5个热门框架推荐Go语言开发必备:5个热门框架推荐Mar 24, 2024 pm 01:15 PM

《Go语言开发必备:5个热门框架推荐》Go语言作为一门快速、高效的编程语言,受到越来越多开发者的青睐。为了提高开发效率,优化代码结构,很多开发者选择使用框架来快速搭建应用。在Go语言的世界中,有许多优秀的框架可供选择。本文将介绍5个热门的Go语言框架,并提供具体的代码示例,帮助读者更好地理解和使用这些框架。1.GinGin是一个轻量级的Web框架,拥有快速

java的String类如何使用java的String类如何使用Apr 19, 2023 pm 01:19 PM

一、认识String1.JDK中的String首先我们看看JDK中的String类源码,它实现了很多接口,可以看到String类被final修饰了,这就说明String类不可以被继承,String不存在子类,这样所有使用JDK的人,用到的String类都是同一个,如果String允许被继承,每个人都可以对String进行扩展,每个人使用的String都不是同一个版本,两个不同的人使用相同的方法,表现出不同的结果,这就导致代码没办法进行开发了继承和方法覆写在带来灵活性的同时,也会带来很多子类行为不

Java String中的split方法如何使用Java String中的split方法如何使用May 02, 2023 am 09:37 AM

String中split方法使用String的split()方法用于按传入的字符或字符串对String进行拆分,返回拆分之后的数组。1、一般用法用一般的字符,例如@或,等符号做分隔符时:Stringaddress="上海@上海市@闵行区@吴中路";String[]splitAddr=address.split("@");System.out.println(splitAddr[0]+splitAddr[1]+splitAddr[2]+splitAddr[3

int32的取值范围是多少int32的取值范围是多少Aug 11, 2023 pm 02:53 PM

int32的取值范围是从-2的31次方到2的31次方减1,即-2147483648到2147483647。int32是有符号的整数类型,意味着它可以表示正数、负数和零,它使用1位来表示符号位,而剩余的31位用来表示数值。由于一位被用来表示符号位,所以int32的有效位数是31位。

java int 是几位java int 是几位Mar 06, 2023 pm 04:09 PM

在java中,int是32位有符号数据类型,其变量需要32位内存;int数据类型的有效范围为-2147483648至2147483647,此范围中的所有整数称为整数字面量。一个整数字面量可以分配给一个int变量,例如“int num1 = 21;”。

See all articles

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

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.