Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1176373
  • 博文数量: 252
  • 博客积分: 5421
  • 博客等级: 大校
  • 技术积分: 2418
  • 用 户 组: 普通用户
  • 注册时间: 2007-06-17 12:59
文章分类

全部博文(252)

文章存档

2017年(3)

2016年(18)

2015年(31)

2014年(18)

2013年(7)

2012年(8)

2011年(12)

2010年(30)

2009年(32)

2008年(57)

2007年(36)

分类: PHP

2015-08-03 11:06:08


  1. #执行php文件入口
  2. break zend_execute_scripts
  3. #编译文件为opcode
  4. break compile_file
  5. #为opcode设置handler
  6. break pass_two
  7. #执行opcode
  8. break execute
  9. #监控编译时变化
  10. watch compiler_globals.function_table.nNumOfElements
  11. watch compiler_globals.class_table.nNumOfElements
  12. watch compiler_globals.filenames_table.nNumOfElements
  13. #监控运行时变化
  14. watch executor_globals.function_table.nNumOfElements
  15. watch executor_globals.class_table.nNumOfElements
  16. watch executor_globals.included_files.nNumOfElements
  17. #监控当前在执行的文件
  18. watch executor_globals->active_op_array->filename
  19. #监控当前在执行的函数
  20. watch executor_globals->active_op_array->function_name
  21. #监控当前在执行的opline
  22. watch executor_globals->current_execute_data->opline
  23. #监控当前在执行的函数
  24. watch executor_globals->current_execute_data->function_state
  25. #监控异常情况
  26. watch executor_globals.exception


阅读(521) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~