PHP中的strtotime()工作得很好,如果你能提供它理解并可以转换的日期格式,但是例如你给它一个英国日期它无法给出正确的unix时间戳.
是否有任何PHP函数,官方或非官方的,可以接受格式变量,告诉函数以什么格式传递日期和时间?
我最接近这样做的是date_parse_from_format()和mktime()的混合
// Example usage of the function I'm after //Like the date() function but in reverse $timestamp = strtotimeformat("03/05/2011 16:33:00","d/m/Y H:i:s");
如果你有PHP 5.3:
原文链接:https://www.f2er.com/php/135724.html$date = DateTime::createFromFormat('d/m/Y H:i:s','03/05/2011 16:33:00'); echo $date->getTimestamp();