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.
这行代码可能已经回答了这个问题。
我已经搜索了一轮,但没有找到我的问题的可用答案。
我想获取一个 html 并使用创建并保存为 $userDateCreated 的值。该值需要重新格式化以匹配 MySql 以便我可以在我的表单中使用日期输入标签。
INSERT INTO `employee`.`details`(`userDateCreated`) VALUES ('$userDateCreated');
任何指导将不胜感激。
HTML 的输入类型 date 和 MySQL 的 date 类型使用相同的格式。
使用 strtotime() 和 date() 将 html5 日期重新格式化为您希望的日期。