...=date("Y-m-d H:i:s",strtotime("$d +30 day"));
发布网友
发布时间:2024-10-03 14:10
我来回答
共2个回答
热心网友
时间:2024-10-05 00:25
strtotime("2012-11-02 08:36:51");
这个是字符串转换成时间戳
数据库读出来就这样写
strtotime($rs['posttime']);
time()这个是输出当前时间的时间戳
strtotime还可以这样用,自己试试
echo(strtotime("now"));
echo(strtotime("3 October 2005"));
echo(strtotime("+5 hours"));
echo(strtotime("+1 week"));
echo(strtotime("+1 week 3 days 7 hours 5 seconds"));
echo(strtotime("next Monday"));
echo(strtotime("last Sunday"));
热心网友
时间:2024-10-05 00:24
前面的$d被赋值了吧,你是不是少看了一段代码