php增加天数的实现方法:1、通过“date('Y-m-d',strtotime("+1 day"))”方法将当前时间增加一天;2、使用“strtotime("+1 month")”方法将当前时间增加一月。

推荐:《PHP视频教程》
php日期相加 增加天数,月数的方法
当前时间增加一天: echo date('Y-m-d',strtotime("+1 day"))
当前时间增加一月: strtotime("+1 month")
立即学习“PHP免费学习笔记(深入)”;
当前时间增加一年: strtotime("+1 year")
系统设置:密码修改 增加用户(权限) [打印机设置 票样打印设置 这2块用不着实现系统界面上 放着就好了]基础设置:基础参数设置(买票设置/订票设置/退票设置)(比如多少时间之前不能买票订票) 车票设置(标准票/儿童票/。。。增删改) 车辆设置(增删该) 车次设置(增删该) 运营计划设置(调度设置)前台营业:销售车票
当前时间增加一秒: strtotime("+1 seconds")
已有时间增加一天:
$d='2012-10-11';
eccho date('Y-m-d',strtotime("{$d} +1 day"));
更多的有
echo strtotime( 'yesterday ') echo date( "Ymd ",strtotime( 'last week '));










