发布网友 发布时间:2022-04-23 04:26
共4个回答
热心网友 时间:2022-04-06 00:36
strtotime把任何格式的日期转换为时间戳。格式:int strtotime ( string time [, int now] );本函数预期接受一个包含美国英语日期格式的字符串并尝试将其解析为 Unix 时间戳(自 January 1 1970 00:00:00 GMT 起的秒数),其值相对于 now 参数给出的时间,如果没有提供此参数则用系统当前时间。 本函数将使用 TZ 环境变量(如果有的话)来计算时间戳。自 PHP 5.1.0 起有更容易的方法来定义时区用于所有的日期/时间函数。此过程在 date_default_timezone_get() 函数页面中有说明。 注: 如果给定的年份是两位数字的格式,则其值 0-69 表示 2000-2069,70-100 表示 1970-2000。热心网友 时间:2022-04-06 01:54
<?php
热心网友 时间:2022-04-06 03:29
$todydate=date("Y-m-d",strtotime('2011-05-31'));$datatime='从数据库中读取的时间';if($todydate==date("Y-m-d",strtotime($datatime))){ //如果相等,你的语句}else{ //如果不等,你的语句}热心网友 时间:2022-04-06 05:20
$datetime = strtotime('2011-05-31');