for html coders who want to publish valid, compliant XHTML, we've got free software resources we can install locally such as CSE Validator, or the trusty HTML Validator extension for Firefox, and any good boy wouldn't be finished until he consulted the Last Word in HTML Validation, the W3C resource at validator.w3.org
likewise, as a web application developer's PHP code starts to take shape, and he begins to test here and there-- similar in purpose to HTML validation, we've got local options for debugging the PHP code: the error reporting built into PHP itself-- if the developer is on top of his game he might use that as his resource,; there are the supplemental extensions such as DBG, APD, Xdebug; the Zend IDE; the NuSphere IDE, and the list goes on (and ON!)... , but what about the PHP coder's equivalent to the W3C online validator? i realize debugging is more complex than simple HTML Validation, but...
does anyone know of an on-line resource where we can test our own submitted PHP code against some on-line debugger / syntax checker?
whether it's copy / paste method, or a URL link as the W3C validator, or any method at all? is there anything out there which might be a little more verbose than, for example, what i get from Xdebug-- and perhaps a bit more "unbreakable" since i can't step-out or step-in w/ break points, etc?
i'm aware also of the built-in syntax checking (as my preferred IDE incorporates an option to use php -l myfile.php from the commandline)
why? why do i care?
because something that i changed in my code has caused the whole 'page' to stop loading-- so i get a white screen, yet all i've changed that i recall is just some HTML in a php string somewhere... i can't see why it broke my page!
plus the online debugger is something i've been wondering about anyway...