每日一句 ( 202525 )  

Life doesn't get easier or more forgiving; we get stronger and more resilient.

生活從未變得更加輕松或寬容,是我們在一點一點變強、變堅韌。———— Steve Maraboli

使用xdebug+webgrind分析php性能

xdebug是php的一個調試工具擴展,webgrind是一個通過web可視化方式來查看xdebug日志的工具,兩個加起來,對于查找PHP整個系統(tǒng)中的性能瓶頸非常有用。 安裝xdebug:https://xdebug.org/download.php 根據(jù)自己php版本選擇和下載對應的xdebug # wget http://xdebug.org/files/xdebug-2.4.1.tgz # tar zxf xdebug-2.4.1.tgz # cd xdebug-2.4.1 開始編譯xdebug.so文件,注意自己phpize和php-config...