gpt4 book ai didi

php - 从字符串创建新的日期时间

转载 作者:IT王子 更新时间:2023-10-29 01:23:07 28 4
gpt4 key购买 nike

我有一个字符串 '23/05/2013' 我想从中创建一个新的日期时间对象,所以我做了:

new \DateTime('23/05/2013');

知道为什么我总是收到这个错误:

DateTime::__construct(): Failed to parse time string (23/05/2013) at position 0 (2): Unexpected character

最佳答案

根据http://www.php.net/manual/en/datetime.formats.date.php

是mm/dd/yyyy,是美式的,不是英式的

使用

DateTime::createFromFormat('d/m/Y', '23/05/2013');

关于php - 从字符串创建新的日期时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16757728/

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