我在本地计算机上使用PHP 5.3并且需要解析英国日期格式(dd / mm / yyyy)。我发现strtotime
无法使用该日期格式,因此我使用date_create_from_format
代替 - 这非常有效。
现在,我的问题是我的登台服务器正在运行PHP 5.2,而date_create_from_format
在该版本上不起作用。 (这是一个共享服务器,并且不知道如何将其升级到PHP 5.3)
那么我可以使用与date_create_from_format
类似的功能吗?定制或PHP原生?
答案 0 :(得分:13)
如果您无法使用strptime
,那么这是一个不同的想法。它类似于Col. Shrapnel的方法,而是使用sscanf
将日期 - 部分值解析为变量,并使用它们构造新的DateTime
对象。
list($day, $month, $year) = sscanf('12/04/2010', '%02d/%02d/%04d');
$datetime = new DateTime("$year-$month-$day");
echo $datetime->format('r');
答案 1 :(得分:2)
尝试PHP 5.1及更高版本中提供的strptime()
。
答案 2 :(得分:2)
包含此代码:
function DEFINE_date_create_from_format()
{
function date_create_from_format( $dformat, $dvalue )
{
$schedule = $dvalue;
$schedule_format = str_replace(array('Y','m','d', 'H', 'i','a'),array('%Y','%m','%d', '%I', '%M', '%p' ) ,$dformat);
// %Y, %m and %d correspond to date()'s Y m and d.
// %I corresponds to H, %M to i and %p to a
$ugly = strptime($schedule, $schedule_format);
$ymd = sprintf(
// This is a format string that takes six total decimal
// arguments, then left-pads them with zeros to either
// 4 or 2 characters, as needed
'%04d-%02d-%02d %02d:%02d:%02d',
$ugly['tm_year'] + 1900, // This will be "111", so we need to add 1900.
$ugly['tm_mon'] + 1, // This will be the month minus one, so we add one.
$ugly['tm_mday'],
$ugly['tm_hour'],
$ugly['tm_min'],
$ugly['tm_sec']
);
$new_schedule = new DateTime($ymd);
return $new_schedule;
}
}
if( !function_exists("date_create_from_format") )
DEFINE_date_create_from_format();
答案 3 :(得分:1)
如果只需解析一种特定格式,则为基本字符串操作。
list($d,$m,$y)=explode("/",$datestr);
答案 4 :(得分:0)
使用格式DD-MM-YY和时间戳,我认为它会更容易
$date="31-11-2015";
$timestamp=strtotime($date);
$dateConvert=date('d-m-Y', $timestamp);
echo $dateConvert;
我已经用过了