benchmark:一个不错的 PHP 基准测试框架

时间:2024-06-17 19:27:50
【文件属性】:

文件名称:benchmark:一个不错的 PHP 基准测试框架

文件大小:15KB

文件格式:ZIP

更新时间:2024-06-17 19:27:50

PHP

一个不错的 PHP 基准测试框架 一个简单的 PHP 基准测试,对日常微优化器很有用。 <?php require __DIR__ . '/vendor/autoload.php' ; use Nice \ Benchmark \ Benchmark ; $ benchmark = new Benchmark ( 100000 , 'String matching' ); $ benchmark -> register ( 'preg_match' , function () { assert ( preg_match ( '/^test/' , 'testing' )); }); $ benchmark -> register ( 'strpos' , function () { assert ( strpos ( 'testing' , '


【文件预览】:
benchmark-master
----src()
--------TestInterface.php(539B)
--------BenchmarkCollection.php(2KB)
--------ResultPrunerInterface.php(603B)
--------ResultPruner()
--------ResultPrinterInterface.php(1KB)
--------Benchmark.php(5KB)
--------ResultPrinter()
--------Test()
--------BenchmarkInterface.php(841B)
----.travis.yml(87B)
----LICENSE(1KB)
----composer.json(450B)
----README.md(3KB)
----tests()
--------BenchmarkTest.php(1KB)
--------ResultPruner()
--------BenchmarkCollectionTest.php(1KB)
----example()
--------example.php(1KB)
----phpunit.xml.dist(667B)

网友评论