可以使用PHP的date()和strtotime()函数来计算30天前的日期。
$currentDate = date('Y-m-d'); // 当前日期
$thirtyDaysAgo = date('Y-m-d', strtotime('-30 days', strtotime($currentDate))); // 30天前的日期
echo $thirtyDaysAgo;
以上代码会输出30天前的日期。
Laravel PHP 深圳智简公司。版权所有©2023-2043 LaravelPHP 粤ICP备2021048745号-3
Laravel 中文站