Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 PHP 并且有一个可变数字,它是动态的,我想代表它创建一个日期。
$number = 4;
我可以创建一天后的日期
echo date('c', strtotime('+1 day'));
如果我想在特定天数(即$number天数)之后创建一个日期怎么办。
$number
如何代表$number.
如果我理解正确,那么您可以执行以下操作:
$number = 4; $days = "+".$number." day"; echo date('c', strtotime($days));
如果这不是您想要做的,那么请澄清您的问题