king192 / phpxhprof
该软件包最新版本(dev-master)没有可用的许可信息。
dev-master
2018-12-24 16:00 UTC
This package is auto-updated.
Last update: 2024-09-10 21:04:49 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 '复制链接访问会有惊喜:';
}