search
HomeBackend DevelopmentPHP TutorialPHP strftime function gets date and time (switch usage)

strftime is a common date and time acquisition function in PHP, which converts numbers stored in the database into time. Here we will introduce the usage and parameters of the strftime function. Friends who need it can refer to it

Usage of strftime() function

The strftime() function can convert date strings in YYYY-MM-DD HH:MM:SS format into other forms of strings.
The syntax of strftime() is strftime(format, date/time, modifier, modifier, ...)

The operation of function strftime() is somewhat similar to sprintf(): recognize in percent A collection of format commands starting with a sign (%). The formatted output results are placed in a string. The formatting command specifies the exact representation of various date and time information in the string strDest. The other characters in the format string are put into the string as they are. The format commands are listed below and are case-sensitive.

strftime() definition and usage
strftime() function formats local time/date according to regional settings.

strftime() Syntax
strftime(format, timestamp) Parameter Description
format Optional. Specifies how results are returned.
timestamp Optional.
Tips and Notes
Tip: Same behavior as gmstrftime(), except that the returned time is local time.

It can use the following symbols to format dates and times:

%a Abbreviation of the day of the week
%A Full name of the day of the week
%b Month The abbreviation of
%B The full name of the month
%c The standard date time string
%C The first two digits of the year
%d The day of the month in decimal notation
% D month/day/year
%e In a two-character field, the day of the month in decimal format
%F year-month-day
%g The last two digits of the year, using Year of the week
%G Year, using the year based on the week
%h Abbreviated month name
%H Hour in 24-hour format
%I Hour in 12-hour format
%j Decimal The day of the year represented
%m The month represented by the decimal system
%M The number of minutes represented by the ten-hour system
%n New line character
%p The equivalent display of local AM or PM
%r 12-hour time
%R Display hours and minutes: hh:mm
%S Decimal seconds
%t Horizontal tab
%T Display hours, minutes and seconds: hh :mm:ss
%u The day of the week, Monday is the first day (value is from 1 to 7, Monday is 1)
%U The week of the year, Sunday is the first day Day (values ​​from 0 to 53)
%V Week of the year, using week-based year
%w Day of the week in decimal notation (values ​​from 0 to 6, Sunday is 0)
% W The week of the year, with Monday as the first day (value from 0 to 53)
%x Standard date string
%X Standard time string
%y Decimal without century Year (values ​​from 0 to 99)
%Y Decimal year with century part
%z, %Z Time zone name, if the time zone name cannot be obtained, a null character is returned.
%% Output percent sign

The usage example of strftime() is as follows:

select strftime('%Y-%m-%d %H: %M:%S','now','localtime');
Result: 2018-5.15 23:58:09
In fact, a better usage is like this, such as system, this month or this year Expenditure:
select strftime('%Y-%m', date) as month, sum (expenditure) as monthly expenditure from journal group by month;

switch usage

<?php
setlocale(LC_TIME,"chs");     //设置本地环境
$weekday = strftime("%A");     //声明变量$weekday的值,获得了系统时间并只需要获取星期几
switch ($weekday){     //switch语句,判断$weekday的值
 case "星期一":     //如果变量的值为“星期一”
 echo "今天是$weekday ,新的一天开始了!";
 break;
 case "星期二":     //如果变量的值为“星期二”
 echo "今天是$weekday ,认真的工作态度真的很重要!";
 break;
 case "星期三":     //如果变量的值为“星期三”
 echo "今天是$weekday ,充实生活,努力工作!";
 break;
 case "星期四":     //如果变量的值为“星期四”
 echo "今天是$weekday ,勤奋才能创造绩效,加油!)";
 break;
 case "星期五":     //如果变量的值为“星期五”
 echo "今天是$weekday ,积极完成工作任务!";
 break;
 case "星期六":     //如果变量的值为“星期六”
 echo "今天是$weekday ,可以放松心情了!";
 break;
 default:      //默认值
 echo "今天是$weekday , 去happy一下!";
 break;
}
?>

The editor of Script House will continue to add some examples for you:

<?php
echo(strftime("%b %d %Y %X", mktime(20,0,0,12,31,98)));
echo(gmstrftime("%b %d %Y %X", mktime(20,0,0,12,31,98)));

//输出当前日期、时间和时区
echo(gmstrftime("It is %a on %b %d, %Y, %X time zone: %Z",time()));
?>

Output:

Dec 31 1998 20:00:00
Dec 31 1998 19:00:00

Get the unix timestamp of the specified date strtotime("2009-1-22") The example is as follows:
echo strtotime("2009-1-22") Result: 1232553600
Description: Return the timestamp of 0:00:00 on January 22, 2009

2. An example of obtaining the English text date and time is as follows:
For comparison, use date to convert the current timestamp and the specified timestamp into system time

(1) Print the timestamp at this time tomorrow strtotime(" 1 day")
Current time: echo date("Y-m-d H:i:s",time()) Result: 2009-01-22 09:40:25
Specify time: echo date("Y-m-d H:i:s",strtotime(" 1 day ")) Result: 2009-01-23 09:40:25

(2) Print the timestamp of yesterday at this time strtotime("-1 day")
Current time: echo date("Y-m-d H:i:s",time()) Result: 2009-01-22 09:40:25
Specified time: echo date("Y-m-d H:i:s",strtotime("-1 day")) Result: 2009-01-21 09:40:25

(3) Print the timestamp at this time next week strtotime(" 1 week")
Current time: echo date("Y-m-d H: i:s",time()) Result: 2009-01-22 09:40:25
Specify time: echo date("Y-m-d H:i:s",strtotime(" 1 week")) Result: 2009 -01-29 09:40:25

(4) Print the timestamp at this time last week strtotime("-1 week")
Current time: echo date("Y-m-d H:i: s",time()) Result: 2009-01-22 09:40:25
Specify time: echo date("Y-m-d H:i:s",strtotime("-1 week")) Result: 2009- 01-15 09:40:25

(5) Print the timestamp of the specified day of the week strtotime("next Thursday")
Current time: echo date("Y-m-d H:i:s", time()) Result: 2009-01-22 09:40:25
Specify time: echo date("Y-m-d H:i:s",strtotime("next Thursday")) Result: 2009-01-29 00 :00:00

(6) Print the timestamp of the specified day of the week strtotime("last Thursday")
Current time: echo date("Y-m-d H:i:s",time()) Result: 2009-01-22 09:40:25
Specified time: echo date("Y-m-d H:i:s",strtotime("last Thursday")) Result: 2009-01-15 00:00:00

Related Recommended:

php About using composer

The above is the detailed content of PHP strftime function gets date and time (switch usage). For more information, please follow other related articles on the PHP Chinese website!

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
The Continued Use of PHP: Reasons for Its EnduranceThe Continued Use of PHP: Reasons for Its EnduranceApr 19, 2025 am 12:23 AM

What’s still popular is the ease of use, flexibility and a strong ecosystem. 1) Ease of use and simple syntax make it the first choice for beginners. 2) Closely integrated with web development, excellent interaction with HTTP requests and database. 3) The huge ecosystem provides a wealth of tools and libraries. 4) Active community and open source nature adapts them to new needs and technology trends.

PHP and Python: Exploring Their Similarities and DifferencesPHP and Python: Exploring Their Similarities and DifferencesApr 19, 2025 am 12:21 AM

PHP and Python are both high-level programming languages ​​that are widely used in web development, data processing and automation tasks. 1.PHP is often used to build dynamic websites and content management systems, while Python is often used to build web frameworks and data science. 2.PHP uses echo to output content, Python uses print. 3. Both support object-oriented programming, but the syntax and keywords are different. 4. PHP supports weak type conversion, while Python is more stringent. 5. PHP performance optimization includes using OPcache and asynchronous programming, while Python uses cProfile and asynchronous programming.

PHP and Python: Different Paradigms ExplainedPHP and Python: Different Paradigms ExplainedApr 18, 2025 am 12:26 AM

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP and Python: A Deep Dive into Their HistoryPHP and Python: A Deep Dive into Their HistoryApr 18, 2025 am 12:25 AM

PHP originated in 1994 and was developed by RasmusLerdorf. It was originally used to track website visitors and gradually evolved into a server-side scripting language and was widely used in web development. Python was developed by Guidovan Rossum in the late 1980s and was first released in 1991. It emphasizes code readability and simplicity, and is suitable for scientific computing, data analysis and other fields.

Choosing Between PHP and Python: A GuideChoosing Between PHP and Python: A GuideApr 18, 2025 am 12:24 AM

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

PHP and Frameworks: Modernizing the LanguagePHP and Frameworks: Modernizing the LanguageApr 18, 2025 am 12:14 AM

PHP remains important in the modernization process because it supports a large number of websites and applications and adapts to development needs through frameworks. 1.PHP7 improves performance and introduces new features. 2. Modern frameworks such as Laravel, Symfony and CodeIgniter simplify development and improve code quality. 3. Performance optimization and best practices further improve application efficiency.

PHP's Impact: Web Development and BeyondPHP's Impact: Web Development and BeyondApr 18, 2025 am 12:10 AM

PHPhassignificantlyimpactedwebdevelopmentandextendsbeyondit.1)ItpowersmajorplatformslikeWordPressandexcelsindatabaseinteractions.2)PHP'sadaptabilityallowsittoscaleforlargeapplicationsusingframeworkslikeLaravel.3)Beyondweb,PHPisusedincommand-linescrip

How does PHP type hinting work, including scalar types, return types, union types, and nullable types?How does PHP type hinting work, including scalar types, return types, union types, and nullable types?Apr 17, 2025 am 12:25 AM

PHP type prompts to improve code quality and readability. 1) Scalar type tips: Since PHP7.0, basic data types are allowed to be specified in function parameters, such as int, float, etc. 2) Return type prompt: Ensure the consistency of the function return value type. 3) Union type prompt: Since PHP8.0, multiple types are allowed to be specified in function parameters or return values. 4) Nullable type prompt: Allows to include null values ​​and handle functions that may return null values.

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software