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.
我在将“app_date”变量显示到日期类型的输入标签中时遇到问题。
部分代码:
<input type="date" name="app_date" value="<?php echo $loan['app_date']; ?>">
使用文本类型,没有任何问题,一切都正确显示。如何解决它可以与日期类型一起使用?
尝试print_r($loan['app_date']);代替回声
print_r($loan['app_date']);
或许:
<input type="date" name="app_date" value="<?php echo date($loan['app_date']); ?>">
对不起,我不完全理解这个问题,在 html 端打印出什么?
好的,我现在明白了,我认为您提供的日期的 HTML 格式不正确
检查此页面:
输入类型 DateTime - 值格式?
如果您正确格式化 $loan["app_date"] 则 html 应该能够正确解析和显示它:)