接受格式的PHP strtotime()函数?

前端之家收集整理的这篇文章主要介绍了接受格式的PHP strtotime()函数?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
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:
$date = DateTime::createFromFormat('d/m/Y H:i:s','03/05/2011 16:33:00');
echo $date->getTimestamp();
原文链接:https://www.f2er.com/php/135724.html

猜你在找的PHP相关文章