PHP代码执行效率评测Ubench.zip

时间:2022-08-06 22:32:58
【文件属性】:
文件名称:PHP代码执行效率评测Ubench.zip
文件大小:5KB
文件格式:ZIP
更新时间:2022-08-06 22:32:58
开源项目 Ubench 是一个用于评测 PHP 代码执行时间和内存使用效率的开发库。 使用方法: require_once 'src/Ubench.php'; $bench = new Ubench; $bench->start(); // Execute some code $bench->end(); // Get elapsed time and memory echo $bench->getTime(); // 156ms or 1.123s echo $bench->getTime(true); // elapsed microtime in float echo $bench->getTime(false, '%d%s'); // 156ms or 1s echo $bench->getMemoryPeak(); // 152B or 90.00Kb or 15.23Mb echo $bench->getMemoryPeak(true); // memory peak in bytes echo $bench->getMemoryPeak(false, '%.3f%s'); // 152B or 90.152Kb or 15.234Mb // Returns the memory usage at the end mark echo $bench->getMemoryUsage(); // 152B or 90.00Kb or 15.23Mb 标签:Ubench
【文件预览】:
ubench-master
----src()
--------Ubench.php(5KB)
----phpunit.xml.dist(635B)
----.travis.yml(124B)
----README.md(1KB)
----tests()
--------UbenchTest.php(4KB)
----.gitignore(23B)
----composer.json(656B)

网友评论