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.
我放在$START_TIME = time();代码的开头和代码$END_TIME = time();的末尾。然后我做了echo ($END_TIME - $START_TIME);并收到了〜的差异4。
$START_TIME = time();
$END_TIME = time();
echo ($END_TIME - $START_TIME);
4
我的问题是,这种测量解析/处理时间的方法有多不准确?为什么?
编辑:我拿出了我的问题的愚蠢部分:) 剩下的问题仍然存在!
time()自“unix big bang”以来,给了你几秒钟的时间。您想要的是microtime(true)(请参阅此处的文档),它为您提供微秒。
time()
microtime(true)