1

我有:

PHP 代码:$date = date("F j, Y, g:i a");并将其发送到我的数据库

我用

$date = $gg['date'];

从我的数据库中获取日期当我echo $date->June 30, 2012, 3:45 pm

时间已经在 mail.php 的数据库中设置,并且在 ordertracking.php 中我得到了那个时间,并想增加一周的时间。

所以我想增加一周的时间:$date = $gg['date'];

 $connection = mysql_connect("localhost","root","") or die ("Can't connect");
mysql_select_db("shoppingcart", $connection) or die ("Can't connect");

$ordertracking = mysql_query("SELECT * FROM `ordertracking` WHERE orderid='$orderid'");
while($gg=mysql_fetch_array($ordertracking))
{
    $progress = $gg['progress'];
    $date = $gg['date'];
}

mysql_close($connection)
4

4 回答 4

3

使用DateTime modify()方法

$dt = DateTime::createFromFormat("F j, Y, g:i a", $date);
$dt->modify('+1 week');
echo $dt->format("F j, Y, g:i a");
于 2012-06-30T13:58:25.553 回答
1

这里有一些简单的解决方案)

$date = date( 'F j, Y, g:i a' );
echo date( 'F j, Y, g:i a', strtotime( $date ) + 7 * 24 * 60 * 60 );
于 2012-06-30T14:01:49.473 回答
0

如果你想使用 strtotime 方法,你会做

$date = date('F j, Y, g:i a', strtotime('2012-06-30 3:45 pm +1 week'));
于 2012-06-30T14:01:53.807 回答
0

你可以试试这个:

$date = 'June 30, 2012, 3:45 pm';

$new_date = date("F j, Y, g:i a",strtotime(date("F j, Y, g:i a", strtotime($date)) . " +1 week"));

希望这可以帮助。

于 2012-06-30T14:04:15.027 回答