Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to transfer date by php sql string

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article mainly explains "how to convert php sql string to date". Interested friends may wish to have a look at it. The method introduced in this paper is simple, fast and practical. Let's let the editor take you to learn "how to convert php sql string to date".

Php sql string to date conversion method: 1, through "date (" Y-m-d ", strtotime ("));" way conversion; 2, through "date (" M-d-Y ", mktime);" way conversion.

This article operating environment: windows7 system, PHP7.1 version, DELL G3 computer

How does the php sql string change the date?

Two ways for php to convert a string into date and store it in a database

The first way

The code is as follows:

$date= date ("Y-m-d", strtotime ("2011-12-12"))

The second way

The code is as follows:

$date = "2011-12-12"; $year= ((int) substr ($date,0,4)); / / get the year $month= ((int) substr ($date,5,2)); / / get the month $day= ((int) substr ($date,8,2)); / / get the number $_ date = date ("M-d-Y", mktime) At this point, I believe you have a deeper understanding of "php sql string how to change the date", might as well come to the actual operation of it! Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report