Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 5.1.6 版上运行 php,并且该 php 版本上没有 date_create 和 date_timestamp_get 函数。
那么我可以做什么替换将起作用并且与以下操作相同:
$date = date_create(); $curr_date_time = date_timestamp_get($date);
谢谢 !
$date = date(); $curr_date_time = strtotime($date);
或更简单的用法:
$curr_date_time = time();
http://php.net/manual/en/function.date.php