PHP strftime function gets date and time (switch usage)
Jun 01, 2018 am 10:05 AMstrftime 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"); //設(shè)置本地環(huán)境 $weekday = strftime("%A"); //聲明變量$weekday的值,獲得了系統(tǒng)時(shí)間并只需要獲取星期幾 switch ($weekday){ //switch語句,判斷$weekday的值 case "星期一": //如果變量的值為“星期一” echo "今天是$weekday ,新的一天開始了!"; break; case "星期二": //如果變量的值為“星期二” echo "今天是$weekday ,認(rèn)真的工作態(tài)度真的很重要!"; break; case "星期三": //如果變量的值為“星期三” echo "今天是$weekday ,充實(shí)生活,努力工作!"; break; case "星期四": //如果變量的值為“星期四” echo "今天是$weekday ,勤奮才能創(chuàng)造績效,加油?。?quot;; break; case "星期五": //如果變量的值為“星期五” echo "今天是$weekday ,積極完成工作任務(wù)!"; break; case "星期六": //如果變量的值為“星期六” echo "今天是$weekday ,可以放松心情了!"; break; default: //默認(rèn)值 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))); //輸出當(dāng)前日期、時(shí)間和時(shí)區(qū) 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:
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!

Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

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

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

User voice input is captured and sent to the PHP backend through the MediaRecorder API of the front-end JavaScript; 2. PHP saves the audio as a temporary file and calls STTAPI (such as Google or Baidu voice recognition) to convert it into text; 3. PHP sends the text to an AI service (such as OpenAIGPT) to obtain intelligent reply; 4. PHP then calls TTSAPI (such as Baidu or Google voice synthesis) to convert the reply to a voice file; 5. PHP streams the voice file back to the front-end to play, completing interaction. The entire process is dominated by PHP to ensure seamless connection between all links.

The core method of building social sharing functions in PHP is to dynamically generate sharing links that meet the requirements of each platform. 1. First get the current page or specified URL and article information; 2. Use urlencode to encode the parameters; 3. Splice and generate sharing links according to the protocols of each platform; 4. Display links on the front end for users to click and share; 5. Dynamically generate OG tags on the page to optimize sharing content display; 6. Be sure to escape user input to prevent XSS attacks. This method does not require complex authentication, has low maintenance costs, and is suitable for most content sharing needs.

To realize text error correction and syntax optimization with AI, you need to follow the following steps: 1. Select a suitable AI model or API, such as Baidu, Tencent API or open source NLP library; 2. Call the API through PHP's curl or Guzzle and process the return results; 3. Display error correction information in the application and allow users to choose whether to adopt it; 4. Use php-l and PHP_CodeSniffer for syntax detection and code optimization; 5. Continuously collect feedback and update the model or rules to improve the effect. When choosing AIAPI, focus on evaluating accuracy, response speed, price and support for PHP. Code optimization should follow PSR specifications, use cache reasonably, avoid circular queries, review code regularly, and use X

1. Maximizing the commercial value of the comment system requires combining native advertising precise delivery, user paid value-added services (such as uploading pictures, top-up comments), influence incentive mechanism based on comment quality, and compliance anonymous data insight monetization; 2. The audit strategy should adopt a combination of pre-audit dynamic keyword filtering and user reporting mechanisms, supplemented by comment quality rating to achieve content hierarchical exposure; 3. Anti-brushing requires the construction of multi-layer defense: reCAPTCHAv3 sensorless verification, Honeypot honeypot field recognition robot, IP and timestamp frequency limit prevents watering, and content pattern recognition marks suspicious comments, and continuously iterate to deal with attacks.

PHP does not directly perform AI image processing, but integrates through APIs, because it is good at web development rather than computing-intensive tasks. API integration can achieve professional division of labor, reduce costs, and improve efficiency; 2. Integrating key technologies include using Guzzle or cURL to send HTTP requests, JSON data encoding and decoding, API key security authentication, asynchronous queue processing time-consuming tasks, robust error handling and retry mechanism, image storage and display; 3. Common challenges include API cost out of control, uncontrollable generation results, poor user experience, security risks and difficult data management. The response strategies are setting user quotas and caches, providing propt guidance and multi-picture selection, asynchronous notifications and progress prompts, key environment variable storage and content audit, and cloud storage.

PHP ensures inventory deduction atomicity through database transactions and FORUPDATE row locks to prevent high concurrent overselling; 2. Multi-platform inventory consistency depends on centralized management and event-driven synchronization, combining API/Webhook notifications and message queues to ensure reliable data transmission; 3. The alarm mechanism should set low inventory, zero/negative inventory, unsalable sales, replenishment cycles and abnormal fluctuations strategies in different scenarios, and select DingTalk, SMS or Email Responsible Persons according to the urgency, and the alarm information must be complete and clear to achieve business adaptation and rapid response.

PHPisstillrelevantinmodernenterpriseenvironments.1.ModernPHP(7.xand8.x)offersperformancegains,stricttyping,JITcompilation,andmodernsyntax,makingitsuitableforlarge-scaleapplications.2.PHPintegrateseffectivelyinhybridarchitectures,servingasanAPIgateway

Select the appropriate AI voice recognition service and integrate PHPSDK; 2. Use PHP to call ffmpeg to convert recordings into API-required formats (such as wav); 3. Upload files to cloud storage and call API asynchronous recognition; 4. Analyze JSON results and organize text using NLP technology; 5. Generate Word or Markdown documents to complete the automation of meeting records. The entire process needs to ensure data encryption, access control and compliance to ensure privacy and security.
