gpt4 book ai didi

php错误的日期格式

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

我有一个购物车,它将订单以及订购日期发送到 mysql 数据库:日期的代码如下:

<?
include("includes/db.php");
include("includes/functions.php");

$max=count($_SESSION['cart']);
for($i=0;$i<$max;$i++){
$pid=$_SESSION['cart'][$i]['productid'];
$q=$_SESSION['cart'][$i]['qty'];
$price=get_price($pid);
$date=date('Y/m/d');
$user=$_SESSION['username'];
$pname=get_product_name($pid);
mysql_query("insert into `order` values ('','$pname','$q','$price','$date','$user')")

or die(mysql_error());

它输出日期为 2011/11,14。我如何让它输出如下所示:14/11/2011??

最佳答案

问题出在 $date = date... 行。我不会直接回答您的问题,但请查看 the documentation for date()对于初学者。另外,您确实应该使用 DATE 数据库字段而不是字符串来存储它

关于php错误的日期格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8115853/

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