php时间类函数吗,关于PHP 内置时间类函数的一个小问题
生活随笔
收集整理的這篇文章主要介紹了
php时间类函数吗,关于PHP 内置时间类函数的一个小问题
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
順便說下 轉成數組是可以獲取到的
Beside from using DateTime::format() you can access the property using reflection:
$dt = new DateTime();
$o = new ReflectionObject($dt);
$p = $o->getProperty('date');
$date = $p->getValue($dt));
This is slight faster than using format() because format() formats a timestring that has already been formatted. Especially if you do it many times in a loop.
However this is not a regular behaviour of PHP. A bugreport has already been filed as @Nile mentioned in the comments above.
總結
以上是生活随笔為你收集整理的php时间类函数吗,关于PHP 内置时间类函数的一个小问题的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: PHP redis秒杀返回结果,php结
- 下一篇: php stdclass,php –