我最近获得了一个用于简单压光机拾取的 PHP 编码。但它的日期格式为 mm/dd/yy。无论如何,我可以将其自动转换为 yy-mm-dd 吗?我听说使用 strtotime 可以在它进入数据库时自动更改它,但我不知道如何以及在哪里添加代码。strftime("%Y-%m-%d", strtotime($Date))
我尝试在主页中添加like.. ,但我不知道在哪里添加,但所有地方都无效。有什么帮助吗?非常感谢您的帮助。
这大致是它在我的主页中的样子:
if(isset($_POST["insert_click"]))
{
$Date=$_POST["Date"];
strftime("%Y-%m-%d", strtotime($Date)); //I tried putting it here but it does not work
$Time=$_POST["Time"];
$query=$connect->prepare("insert into Booking(Date, Time) values (?,?)");
$query->bind_param('ss', $Date, $Time);
$query->execute();
}
这大致是它在我的表单页面中的外观:
<tr>
<td>Date:</td>
<td>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>jQuery UI Datepicker - Format date</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
<script>
$(function()
{
$( "#datepicker" ).datepicker({minDate:0});
$( "#format" ).change(function()
{
$( "#datepicker" ).datepicker();
});
});
</script>
</head>
<body>
<input type="text" id="datepicker" size="30" name="Date"/>
</body>
</html>
</td>
</tr>