;;;;;;;;;;;;;;;;;;;;;;; xdebug ;;;;;;;;;;;;;;;;;;;;;;;[xdebug]; 这里要求必须是绝对路径,不能是相对路径 see:; http://stackoverflow.com/questions/1758014/whats-the-difference-between-extension-and-zend-extension-in-php-inizend_extension="/usr/local/php/lib/php/extensions/no-debug-non-zts-20090626/xdebug.so";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; All API Docs At http://xdebug.org/docs/all_settings ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;xdebug.overload_var_dump=On; 强制指定显示错误,不管php.ini的设置xdebug.force_display_errors=Onxdebug.force_error_reporting=On; If this setting is 1, then stacktraces will be shown by default on an error event.; You can disable showing stacktraces from your code with xdebug_disable().; As this is one of the basic functions of Xdebug, it is advisable to leave this setting set to 1.xdebug.default_enable=1; don't use coverage functionxdebug.coverage_enable=Off;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Stack Traces ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; http://xdebug.org/docs/stack_trace ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;xdebug.collect_params=3xdebug.collect_return=Off; xdebug.collect_vars=On; xdebug.dump_globals=On; xdebug.dump.SERVER="REQUEST_URI";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Function Trace ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; http://xdebug.org/docs/execution_trace ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;xdebug.auto_trace=Offxdebug.collect_includes=On;显示内存信息,在trace的时候xdebug.show_mem_delta=Onxdebug.trace_enable_trigger=Onxdebug.trace_output_dir="/var/log/php/xdebug/trace_output";指定trace输出文件的格式, 0 是文本文件,1 计算机可读格式, 2 html格式xdebug.trace_format=0;When set to '1' the trace files will be appended to, instead of being overwritten in subsequent requests.xdebug.trace_options=0;指定trace输出文件名的格式, %R Meaning $_SERVER['REQUEST_URI']xdebug.trace_output_name=trace.%R;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Profiling Script ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; http://xdebug.org/docs/profiler ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;xdebug.profiler_enable=Offxdebug.profiler_output_dir="/var/log/php/xdebug/profiler_output"xdebug.profiler_enable_trigger=On;profiler文件是追加,还是重写xdebug.profiler_append=Offxdebug.profiler_output_name=%R.cachegrind;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Remote Debugging ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; http://xdebug.org/docs/remote ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;xdebug.remote_handler=dbgpxdebug.remote_autostart=Offxdebug.remote_enable=1xdebug.remote_host=192.168.192.1xdebug.remote_port=9000xdebug.remote_mode=req;xdebug.remote_log=""
;;;;;;;;;;; add the following configuration to php.ini ;;;;;;;;;;;;;;;;;;;;;;;;;;;auto_prepend_file="/etc/php/include/auto_prepend.php"auto_append_file="/etc/php/include/auto_append.php"; Xhprof Module[xhprof]xhprof.output_dir=/var/log/php/xhprof/xhprof_data;;;;;;;;;;; add the following configuration to php-fpm.conf ;;;;;;;;;;;;;;;;;;;;;;#### for xhprofphp_admin_value[extension]=xhprof.soenv[XHPROF_ROOT_PATH]=/var/log/php/xhprof# 采样百分比,多少次访问后性能采样一次env[XHPROF_SAMPLING_PERCENTAGE]=3000