Simple PHP Debugging with Firebug

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • webEater

    #1

    Simple PHP Debugging with Firebug

    Hello - I posted this in the Firebug Group (http://groups.google.com/
    group/firebug), too:

    I created a small PHP script that sends all PHP debugging messages to
    the Firebug console. So your window is not messed up with debugging
    messages and you make full use of Firebug features. You can set mode
    to 'html', too, then an absolute positioned box is populated with your
    messages.

    I think this could be useful for every PHP-developer, who has
    installed Firebug.

    URL: http://andreaskalsch.de/blog/2008/03...%20PHP%20debug...

    Any ideas how I can improve the script? Let's start the discussion!

    Andi
  • bill

    #2
    Re: Simple PHP Debugging with Firebug

    webEater wrote:
    Hello - I posted this in the Firebug Group (http://groups.google.com/
    group/firebug), too:
    >
    I created a small PHP script that sends all PHP debugging messages to
    the Firebug console. So your window is not messed up with debugging
    messages and you make full use of Firebug features. You can set mode
    to 'html', too, then an absolute positioned box is populated with your
    messages.
    >
    I think this could be useful for every PHP-developer, who has
    installed Firebug.
    >
    URL: http://andreaskalsch.de/blog/2008/03...%20PHP%20debug...
    >
    Any ideas how I can improve the script? Let's start the discussion!
    >
    Andi
    The correct link is:
    <http://andreaskalsch.d e/blog/2008/03/06/Deadly%20simple %20PHP%20debugg ing/>

    Comment

    • webEater

      #3
      Re: Simple PHP Debugging with Firebug

      Yep, sorry for the broken link, bill has posted the right one (above).

      I use Zend framework, but still not the commercial (?) deep
      integration of a debugger in the Zend Engine. I don't use
      trigger_error() because ... the function name is longer, and accepts
      just one parameter of type string ;) Yes I am one of the lazy
      proggers!

      Yours,

      Andi

      Comment

      Working...