Home  >  Article  >  Backend Development  >  How to convert date to separator date in php

How to convert date to separator date in php

藏色散人
藏色散人Original
2021-10-19 09:09:542188browse

php method to convert date to separator date: 1. Create a PHP sample file; 2. Convert the specified date into a timestamp through the mktime function; 3. Use "date("Y-m-d",$newdaystr) ;" Just change the separator.

How to convert date to separator date in php

The operating environment of this article: windows7 system, PHP7.1 version, DELL G3 computer

How to convert date to separator date in php ?

php The date format separator changes from / to -

For example:

changes 16/11/2011 to 2011-11-16

$t_today ="16/11/2011";
$daystr=split("/",$t_today);
//先变成时间戳
$newdaystr=mktime(0,0,0,$daystr[1],$daystr[0],$daystr[2]);
//在换分隔符
 echo date("Y-m-d",$newdaystr);

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of How to convert date to separator date in php. 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