Wallogit.com
2017 © Pedro Peláez
It's an extension for xhgui., (*1)
wget https://raw.github.com/thbourlove/xhgui-extension/master/Extension.php
example, (*2)
<?php
require "Extension.php";
$mongo = new MongoClient();
$xhprof = new \Thb\Xhgui\Extension($mongo->xhprof);
$xhprof->start();
print 1;
$xhprof->save('print');
"require-dev": {
"thbourlove/xhgui-extension": "dev-master"
}
example, (*3)
<?php
require "vendor/autoload.php";
$mongo = new MongoClient();
$xhprof = new \Thb\Xhgui\Extension($mongo->xhprof);
$xhprof->start();
print 1;
$xhprof->save('print');