一個新的開始嗎?
今天繼續的學習yii。這裏我就不先說yii了。我最近一直在尋找一個phpdebug的工具。抑或者性能調試的東東。老是不要滿意的找到。這個地方我先使用了firephp..我果真是個粗枝大葉的人。我下載完成了官方的源文件以後,開始嘗試着輸出數據可是老是不得其法。最終我發現我原來失誤了。我錯誤的覺得firephp使用的就是我以前安裝的firefox的firebug.惋惜事實不是這個樣子的。實際上安裝完成了firebug以後,仍是要安裝一個firephp的東東的。以後一切使用正常。
我本地的使用php的環境是window的。我使用的是集成的wamp ,其實挺好用的。已經幫助我安裝了xdebug,以及webGrind 我不得不讚一個.以後的對於php.ini中關於xdebug的配置我就抄襲了網上的一段代碼。罪過。
[xdebug]
xdebug.remote_enable
= off
xdebug.profiler_enable
= On
xdebug.profiler_enable_trigger
= On
xdebug.profiler_output_name
= cachegrind.out.
%t.
%p
xdebug.profiler_output_dir
=
"d:/wamp/tmp"
xdebug.default_enable
= On
xdebug.show_exception_trace
= On
xdebug.show_local_vars
=
1
xdebug.max_nesting_level
=
50
xdebug.var_display_max_depth
=
6
xdebug.dump_once
= On
xdebug.dump_globals
= On
xdebug.dump_undefined
= On
xdebug.dump.REQUEST
=
*
xdebug.dump.SERVER
= REQUEST_METHOD,REQUEST_URI,HTTP_USER_AGENT
xdebug.trace_format
=
0
xdebug.auto_trace
= On
xdebug.collect_params
=
4
xdebug.collect_includes
= On
xdebug.collect_return
= On
xdebug.show_mem_delta
= On