Heim  >  Artikel  >  Backend-Entwicklung  >  PHP-Leistungsanalysetool xhprof

PHP-Leistungsanalysetool xhprof

藏色散人
藏色散人nach vorne
2019-12-31 17:14:373425Durchsuche

php install xhprof extension (kompatibel mit php5 und 7)

git clone git@github.com:longxinH/xhprof.git
cd xhprof 
/usr/local/php7/bin/phpize 
./configure --with-php-config=/usr/local/php7/bin/php-config 
make 
sudo make install

Die Erweiterung ist kompiliert, stellen Sie sicher

ls /usr/local/php7/lib/php/extensions/no-debug-non-zts-20180731/xhprof.so

Legen Sie die vorangestellte Datei in /tmp/xhprof ab .prepend .php unter

vi /usr/local/php7/lib/php.ini
[xhprof]
extension=xhprof.so
auto_prepend_file ="/tmp/xhprof.prepend.php";

Apache neu starten

ps: Datei xhprof.prepend.php voranstellen

<?php
xhprof_sample_enable();
define(&#39;XHPROF_START_TIME&#39;, microtime(true));
register_shutdown_function(function () {
    $xhprof_time = microtime(true) - XHPROF_START_TIME;
    $xhprof_data = xhprof_sample_disable();
    if ($xhprof_time > 2 && !empty($xhprof_data)) {
        array_unshift($xhprof_data, http_build_query($_REQUEST));
        $xhprof_file = &#39;/tmp/xhprof/&#39; . date(&#39;YmdHis0000&#39;) . uniqid() . &#39;.&#39;
            . str_replace(&#39;.&#39;, &#39;_&#39;, strtolower((isset($_SERVER[&#39;HTTP_HOST&#39;]) ? $_SERVER[&#39;HTTP_HOST&#39;] : &#39;NOHOST&#39;)
            . &#39;-&#39; . (isset($_SERVER[&#39;REQUEST_METHOD&#39;]) ? $_SERVER[&#39;REQUEST_METHOD&#39;] : &#39;NOMETHOD&#39;)))
            . &#39;.xhprof&#39;;
        file_put_contents($xhprof_file, serialize($xhprof_data));
    }
});

Das obige ist der detaillierte Inhalt vonPHP-Leistungsanalysetool xhprof. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Stellungnahme:
Dieser Artikel ist reproduziert unter:lukachen.com. Bei Verstößen wenden Sie sich bitte an admin@php.cn löschen