PHP performance analysis tool xhprof

藏色散人
Release: 2023-04-08 07:00:02
forward
3201 people have browsed it

php Install xhprof extension (compatible with php5 and 7)

git clone [email protected]:longxinH/xhprof.git
cd xhprof 
/usr/local/php7/bin/phpize 
./configure --with-php-config=/usr/local/php7/bin/php-config 
make 
sudo make install
Copy after login

The extension is compiled, confirm it

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

Put the prepend file in /tmp/xhprof.prepend .php under

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

Restart apache

ps: prepend file xhprof.prepend.php

 2 && !empty($xhprof_data)) {
        array_unshift($xhprof_data, http_build_query($_REQUEST));
        $xhprof_file = '/tmp/xhprof/' . date('YmdHis0000') . uniqid() . '.'
            . str_replace('.', '_', strtolower((isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : 'NOHOST')
            . '-' . (isset($_SERVER['REQUEST_METHOD']) ? $_SERVER['REQUEST_METHOD'] : 'NOMETHOD')))
            . '.xhprof';
        file_put_contents($xhprof_file, serialize($xhprof_data));
    }
});
Copy after login

The above is the detailed content of PHP performance analysis tool xhprof. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
source:lukachen.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact [email protected]
Latest issues
Popular Tutorials
More>
Latest downloads
More>
web effects
Website source code
Website materials
Front end template
About us Disclaimer Sitemap
PHP Chinese website:Public welfare online PHP training,Help PHP learners grow quickly!