在输入中显示自动日期

发布于 2024-10-12 13:50:57 字数 134 浏览 4 评论 0原文

我正在制作发票页面,我希望日期以及到期日期(30 天后)自动显示为输入,

是否有自动功能?

我有这个:

TD

可以将值更改为今天的日期吗???还是30天后??

帮助! :D

I am making a invoices page and I want the date to appear automatically as an input as well as the date of expiration (30 days later)

is there an automatic function?

I have this:

TD

can value change to something like todaysdate??? or 30 days later??

help! :D

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

暖伴 2024-10-19 13:50:57

您需要使用 DateTime::add 方法。

<?php

  $date = new DateTime('2011-01-01');
  $date->add(new DateInterval('P30D'));
  echo $date->format('Y-m-d') . "\n";

?>

You need to use DateTime::add method.

<?php

  $date = new DateTime('2011-01-01');
  $date->add(new DateInterval('P30D'));
  echo $date->format('Y-m-d') . "\n";

?>
怕倦 2024-10-19 13:50:57

你的问题非常难以解读。

也许您正在寻找 PHP 的 strtotime() 函数。例如,strtotime('today') 返回今天日期的时间戳,strtotime('下周三') 返回下周三的时间戳。

Your question is extremely difficult to decipher.

Perhaps you are looking for PHP's strtotime() function. For example, strtotime('today') returns a timestamp for today's date, and strtotime('next Wednesday') returns a timestamp for next Wednesday.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文