我如何检查当前日期的日期
how can i check a date with current date
if ((strtotime("1 June") == time()))
{
mysql_connect("localhost","root","");//database connection
mysql_select_db("student");
$order = "UPDATE stud SET class='9' WHERE class='8'";
$result = mysql_query($order); //order executes
}
上面的代码不起作用..我将我的日期更改为 6 月 1 日..但是 strtotime() 和 time() returns 不同的值..
您正在尝试对照日期查看时间,请参阅php time function
尝试改用日期函数date('jS F');
$cmp = strtotime("19 April");
// convert specified date to int
$current_date = strtotime(date("Y-m-d"));
if ($cmp == $current_date) {
// process
}
time() 函数将为您提供相当于
strtotime(date('Y-m-d H:i:s'));
如果要比较当前日期和给定日期只使用
strtotime(date('Y-m-d'));
结果的格式为
strtotime("19 April");
检查 strtotime 和 date 的文档
http://php.net/manual/en/function.strtotime.php
if ((strtotime("1 June") == time()))
{
mysql_connect("localhost","root","");//database connection
mysql_select_db("student");
$order = "UPDATE stud SET class='9' WHERE class='8'";
$result = mysql_query($order); //order executes
}
上面的代码不起作用..我将我的日期更改为 6 月 1 日..但是 strtotime() 和 time() returns 不同的值..
您正在尝试对照日期查看时间,请参阅php time function
尝试改用日期函数date('jS F');
$cmp = strtotime("19 April");
// convert specified date to int
$current_date = strtotime(date("Y-m-d"));
if ($cmp == $current_date) {
// process
}
time() 函数将为您提供相当于
strtotime(date('Y-m-d H:i:s'));
如果要比较当前日期和给定日期只使用
strtotime(date('Y-m-d'));
结果的格式为
strtotime("19 April");
检查 strtotime 和 date 的文档 http://php.net/manual/en/function.strtotime.php