gpt4 book ai didi

php - 存储在 php 中的日期时间

转载 作者:行者123 更新时间:2023-11-30 23:55:11 24 4
gpt4 key购买 nike

我已将教程中的日期时间存储在 mysql 中:2011-02-10 01:21:39

从这里,我如何使用 php 提取单个元素?说我只想要年份?如果不可能,甚至只是完整的日期?

最佳答案

参见 strtotime()功能。这会将您的日期字符串转换为时间戳。然后使用 date()拉出你需要的部分:

$time = strtotime('a string containing some description of the time and date');
$year = date('Y', $time);

关于php - 存储在 php 中的日期时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4960814/

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