gpt4 book ai didi

php - 代码使用的执行时间和内存

转载 作者:行者123 更新时间:2023-12-04 20:33:24 27 4
gpt4 key购买 nike

我是一名 PHP 编码员。我没有找到任何方法来获得执行 code.means 执行时间期间花费了多少时间。
以及代码在执行期间使用了多少内存空间

我知道 PHP INI 设置但没有显示我的解决方案。

我怎么能通过编码获得那个时间和内存空间单元。

最佳答案

我在生成器示例中找到了这个。

$start_time=microtime(true);

//do something what you want to measure

$end_time=microtime(true);
echo "time: ", bcsub($end_time, $start_time, 4), "\n";
echo "memory (byte): ", memory_get_peak_usage(true), "\n";

http://php.net/manual/en/language.generators.overview.php#114136

关于php - 代码使用的执行时间和内存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15492926/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com