在PHP中,可以使用strtotime()
函数和date()
函数来进行时间的加减操作。要将时间减去一年,可以使用以下代码:
$currentTime = date('Y-m-d'); // 获取当前时间
$oneYearAgo = date('Y-m-d', strtotime('-1 year', strtotime($currentTime))); // 将当前时间减去一年
echo $oneYearAgo;
上述代码中,首先使用strtotime()
函数将当前时间转换为时间戳,然后使用strtotime()
函数将时间戳减去一年,最后使用date()
函数将减去一年后的时间戳转换为日期格式并输出。
上一篇:php生成防红跳转代码
Laravel PHP 深圳智简公司。版权所有©2023-2043 LaravelPHP 粤ICP备2021048745号-3
Laravel 中文站