我使用以下链接在 Windows xampp 1.7.7 上安装了 xdebug 和 webgrind:link。在去 http://localhost/webgrind 时会给出如下所示的内容,而不是显示配置文件。没有下拉菜单或可供选择的内容。
Select a cachegrind file above
(looking in C:\xampp\htdocs\webgrind\tmp/ for files matching /^cachegrind.out..+..+$/)
但是我在 tmp 文件夹中有 2 个以 cachegrind.out 名称开头的文件。
我在(xampp/php/php.ini)中的设置是
zend_extension = "C:\xampp\php\ext\php_xdebug-2.2.2-5.3-vc9.dll"
xdebug.profiler_output_dir = "C:\xampp\htdocs\webgrind\tmp"
xdebug.profiler_enable = 1
xdebug.profiler_enable_trigger = 0
xdebug.profiler_output_name = cachegrind.out.%t.%p
webgrind/config.php 设置
static $storageDir = 'C:\xampp\htdocs\webgrind\tmp';
static $profilerDir = 'C:\xampp\htdocs\webgrind\tmp';
我也试过这些
static $storageDir = '';
static $profilerDir = '/tmp';
但没有结果。我怎样才能让它工作?