2023-09-05

将PHP时间戳转换为HTML5中的输入类型为datetime的元素


将PHP时间戳转换为HTML5中的输入类型为datetime的元素

对于 HTML5 输入时间,在 PHP 中:

示例

echo date("Y-m-d/TH:i:s");
登录后复制

输出

输出为:

2018-28-03T19:12:49
登录后复制

带时间戳的 HTML 为:

<input type="datetime" value="<?php echo date("Y-m-d/TH:i:s",$timestamp); ?>"/>
登录后复制

以上就是将PHP时间戳转换为HTML5中的输入类型为datetime的元素的详细内容,更多请关注php中文网其它相关文章!

https://www.php.cn/faq/602843.html

发表回复

Your email address will not be published. Required fields are marked *