gpt4 book ai didi

php - 从日期字符串获取月、日、年的最快方法

转载 作者:行者123 更新时间:2023-11-29 07:04:29 25 4
gpt4 key购买 nike

我正在从 mysql 数据库获取日期:

结果如下:

2017-01-20

获取月份、日期和年份的最快方法是什么,例如,当我回显时,它将是这样的:

echo $month; //01
echo $day; //20
echo $year; //2017

最佳答案

好吧,如果您知道输出始终是“YYYY-MM-DD”格式的字符串,则最基本的方法是:

<?php

$query = ... //query is your string "YYYY-MM-DD"
$year = substr($query, 0, 4);
$month = substr($query, 5, 2);
$day = substr($query, 8, 2);

echo $month;
echo $day;
echo $year;
?>

关于php - 从日期字符串获取月、日、年的最快方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42263688/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com