1

I installed php7.0-dbg using ppa:ondrej/ph into my ubuntu LTS 14.04. After the installation I tryed run phpdbg command, but I received the message:

phpdbg: command not found

Did I understand wrong? What is that package?

My dpkg -l php7.0*

enter image description here

The Zani
  • 111
  • 4

1 Answers1

1

From documentation, you can start the debugger by typing in this command:

$ gdb

And run:

> run path_to_php_script.php

Finally to see the back trace log:

> bt
Khanh Tran
  • 1,776
  • 5
  • 25
  • 48