码迷,mamicode.com
首页 > Web开发 > 详细

大型网站调试工具之一(php性能优化分析工具XDebug)

时间:2015-11-21 22:39:43      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:

一、安装配置
  1、下载PHP的XDebug扩展,网址:http://xdebug.org/

  2、在Linux下编译安装XDebug

引用
tar -xzf xdebug-2.0.0RC3.gz
cd xdebug-2.0.0RC3
/usr/local/php/bin/phpize
./configure --enable-xdebug
cp modules/xdebug.so /usr/local/php/lib/php/extensions/no-debug-non-zts-20020429/


  注:/usr/local/php/lib/php/extensions/no-debug-non-zts-20020429/不同的PHP版本路径不同,也不一定要放在该路径,可以在zend_extension_ts中自行指定xdebug.so所在位置。

引用
vi /usr/local/php/lib/php.ini


  修改php.ini,去除PHP加速模块,增加以下配置信息支持XDebug扩展

  1. [Xdebug]   
  2. zend_extension_ts="/usr/local/php/lib/php/extensions/no-debug-non-zts-20020429/xdebug.so"  
  3. xdebug.profiler_enable=on  
  4. xdebug.trace_output_dir="/tmp/xdebug"  
  5. xdebug.profiler_output_dir="/tmp/xdebug"  
  6. xdebug.profiler_output_name="script"  
  1. [Xdebug]  
  2. zend_extension_ts="/usr/local/php/lib/php/extensions/no-debug-non-zts-20020429/xdebug.so"  
  3. xdebug.profiler_enable=on  
  4. xdebug.trace_output_dir="/tmp/xdebug"  
  5. xdebug.profiler_output_dir="/tmp/xdebug"  
  6. xdebug.profiler_output_name="script"  

 

  1. [Xdebug]  
  2. zend_extension_ts="/usr/local/php/lib/php/extensions/no-debug-non-zts-20020429/xdebug.so"  
  3. xdebug.profiler_enable=on  
  4. xdebug.trace_output_dir="/tmp/xdebug"  
  5. xdebug.profiler_output_dir="/tmp/xdebug"  
  6. xdebug.profiler_output_name="script"  

 

引用
mkdir -p /tmp/xdebug
chmod 755 /tmp/xdebug
chown www:www /tmp/xdebug
/usr/local/apache/bin/apachectl -k restart



  3、客户端(Windows):WinCacheGrind
  下载地址:http://sourceforge.net/projects/wincachegrind/

  二、分析过程
  1、访问你的网站,将首页上各种链接点击几遍,XDebug在/tmp/xdebug目录生成以下文件:
  usr_local_apache_htdocs_app_checknum_chknum_php_cachegrind.out
  usr_local_apache_htdocs_app_login_showHeaderLogin_php_cachegrind.out
  usr_local_apache_htdocs_app_play_play_php_cachegrind.out
  usr_local_apache_htdocs_app_user_member_php_cachegrind.out
  usr_local_apache_htdocs_tag_tags_php_cachegrind.out
  usr_local_apache_htdocs_top_top_php_cachegrind.out

  2、将以上文件拷贝到Windows上,用客户端软件WinCacheGrind打开每个文件,发现以下PHP程序执行所耗费的时间最长:
  /usr/local/apache/htdocs/tag/tags.php      耗时840ms

  三、分析结果:
  1、/usr/local/apache/htdocs/tag/tags.php

技术分享

  (1)耗时最长的filter_tags函数出现在/usr/local/apache/htdocs/tag/tags.php的第158行:
  $tags .= filter_tags($videos[$i][‘tags‘])." ";

   (2)filter_tags函数引自/usr/local/apache/htdocs/include /misc.php,getForbiddenTags函数被filter_tags函数调用了21次,filter_tags函数耗费的时间中绝大多数 因getForbiddenTags函数所致。getForbiddenTags函数的内容如下:

  1. function getForbiddenTags()   
  2. {   
  3.      
  4.   $tagsPath=TEMPLATE_FILE_PATH."tags/forbidden_tags.txt";   
  5.     if(file_exists($tagsPath))   
  6.     {   
  7.         $fp = fopen($tagsPath, "r");   
  8.       $arrconf = array ();   
  9.       if ($fp)    
  10.         {   
  11.         while (!feof($fp))    
  12.             {   
  13.           $line = fgets($fp, 1024);   
  14.           $line = trim($line);   
  15.           $rows = explode("#", $line);   
  16.           $coumns = explode("=", trim($rows[0]));   
  17.                 if(""!=trim($coumns[0]))   
  18.                 {   
  19.               $arrconf[trim($coumns[0])] = trim($coumns[1]);   
  20.                 }   
  21.         }   
  22.       }   
  23.         return $arrconf;   
  24.     }   
  25. }   
  1. function getForbiddenTags()  
  2. {  
  3.     
  4.   $tagsPath=TEMPLATE_FILE_PATH."tags/forbidden_tags.txt";  
  5.     if(file_exists($tagsPath))  
  6.     {  
  7.         $fp = fopen($tagsPath, "r");  
  8.       $arrconf = array ();  
  9.       if ($fp)   
  10.         {  
  11.         while (!feof($fp))   
  12.             {  
  13.           $line = fgets($fp, 1024);  
  14.           $line = trim($line);  
  15.           $rows = explode("#", $line);  
  16.           $coumns = explode("=", trim($rows[0]));  
  17.                 if(""!=trim($coumns[0]))  
  18.                 {  
  19.               $arrconf[trim($coumns[0])] = trim($coumns[1]);  
  20.                 }  
  21.         }  
  22.       }  
  23.         return $arrconf;  
  24.     }  
  25. }  

 

  1. function getForbiddenTags()  
  2. {  
  3.     
  4.   $tagsPath=TEMPLATE_FILE_PATH."tags/forbidden_tags.txt";  
  5.     if(file_exists($tagsPath))  
  6.     {  
  7.         $fp = fopen($tagsPath, "r");  
  8.       $arrconf = array ();  
  9.       if ($fp)   
  10.         {  
  11.         while (!feof($fp))   
  12.             {  
  13.           $line = fgets($fp, 1024);  
  14.           $line = trim($line);  
  15.           $rows = explode("#", $line);  
  16.           $coumns = explode("=", trim($rows[0]));  
  17.                 if(""!=trim($coumns[0]))  
  18.                 {  
  19.               $arrconf[trim($coumns[0])] = trim($coumns[1]);  
  20.                 }  
  21.         }  
  22.       }  
  23.         return $arrconf;  
  24.     }  
  25. }  


  (4)对getForbiddenTags函数进行分析,其中的PHP函数trim被调用了16827次。
  
技术分享

 


  (5)可能造成瓶颈的原因:
  要过滤的156个关键字逐行存放在/usr/local/apache/template/tags/forbidden_tags.txt文件中,文本数据库的效率不高。
  逐行读取函数fgets、以及去除字符串两边的空白或者指定的字符的函数trim在高负载下的效率低,可以测试fopen、fread、fscanf之类的文件读取函数,对比一下。

大型网站调试工具之一(php性能优化分析工具XDebug)

标签:

原文地址:http://www.cnblogs.com/php-rearch/p/4984794.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!