在输入中显示自动日期
我正在制作发票页面,我希望日期以及到期日期(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要使用 DateTime::add 方法。
You need to use DateTime::add method.
你的问题非常难以解读。
也许您正在寻找 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.