gpt4 book ai didi

php - 从日期选择器到 mysql/php 的奇怪日期格式

转载 作者:行者123 更新时间:2023-11-29 19:27:18 24 4
gpt4 key购买 nike

谁能看出这里出了什么问题吗?我不能:(

示例日期:2017 年 2 月 10 日

在我的数据库中插入:2017-10-02

数据库设置为日期

Jquery 日期选择器:

    $('.datepicker').daterangepicker({ 
singleDatePicker: true,
locale: {
format: 'DD/MM/YYYY'
}
});

日期选择器输出为 HTML:10/02/2017

PHP:

$Newdate = date('Y-m-d', strtotime(str_replace('-', '/', $DateTaken)));

为什么日期和月份会互换?

最佳答案

您必须更改 date() 函数的日期格式:

$Newdate = date('d-m-Y', strtotime(str_replace('-', '/', $DateTaken)));

文档:http://php.net/manual/en/function.date.php

关于php - 从日期选择器到 mysql/php 的奇怪日期格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42047517/

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