tags:

views:

15

answers:

1

Hi,

how to know the xdebug version i have installed?

Regards

Javi

+2  A: 

You should be able to do it with a simple test script:

<?php
  phpinfo();
?>

And get output like this:

alt text

pygorex1