king192 / phpxhprof
There is no license information available for the latest version (dev-master) of this package.
dev-master
2018-12-24 16:00 UTC
This package is auto-updated.
Last update: 2025-03-10 22:03:00 UTC
README
php 性能分析 composer require king192/phpxhprof
<?php
require 'vendor/autoload.php';
//\king192\phpxhprof\xhprof::test();
\king192\phpxhprof\xhprof::enable();
var_dump(true);
for ($i=0; $i < 5; $i++) {
echo $i;
}
tttt();
$link = \king192\phpxhprof\xhprof::disable();
echo $link;
function tttt() {
sleep(3);
echo '复制链接访问会有惊喜:';
}