king192 / phpxhprof
Installs: 9
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
pkg:composer/king192/phpxhprof
This package is auto-updated.
Last update: 2025-09-10 23:12:14 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 '复制链接访问会有惊喜:';
}