gpt4 book ai didi

php - 如何在 PHP 中连接日期字段和时间字段

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

我需要将日期字段 bid_staring_date 与时间字段 bid_staring_time 连接起来,并检查当前日期时间 $current_date_time=date('M d,Y H: i:s'); 我该怎么做?

<?php 
$current_date_time=date('M d,Y H:i:s');
$bid_schedule_date=date('M d,Y',strtotime($row['bid_staring_date']));
$bid_schedule_time=date('H:i:s',strtotime($row['bid_staring_time']));
echo $bid_schedule_date_time=date('M d,Y H:i:s',(strtotime($bid_schedule_date)+strtotime($bid_schedule_time)));
$bid_schedule_id=$row['bid_schedule_id'];

if($current_date_time>=$bid_schedule_date_time){
$btn_type="btn btn-success";
$btn_value="Bid Now";
$btn_link="openbid.php?pid=$bid_schedule_id";
}
else
{
$btn_type="btn btn-danger";
$btn_value="Bid Not Started";
$btn_link="#";
}
echo "<a href='$btn_link' class='$btn_type'>$btn_value</a>";
?>

最佳答案

   $game_date = game['date'];
$game_time = game['time'];

$combined_date_and_time = $game_date . ' ' . $game_time;
$past_date = strtotime($combined_date_and_time);

引用::Take two variables for Date and Time and combine to make one date

关于php - 如何在 PHP 中连接日期字段和时间字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43510666/

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