vote up 28 vote down star
23

How do you debug your PHP script?

I am aware of basic debugging such as using the Error Reporting. The breakpoint debugging in PHPEclipse is also quite useful. Any other good/better techniques out there?

flag

73% accept rate

24 Answers

vote up 18 vote down check

I follow the article at http://dev.piwik.org/trac/wiki/HowToSetupDevelopmentEnvironmentWindows to setup an Eclipse environment that has debugging features like you mentioned. The ability to step into the code is a much better way to debug then the old method of var_dump and print at various points to see where your flow goes wrong. When all else fails though and all I have is SSH and vim I still var_dump()/die() to find where the code goes south.

link|flag
vote up 4 vote down

I've used the Zend Studio (5.5), together with Zend Platform. That gives proper debugging, breakpoints/stepping over the code etc., although at a price.

link|flag
vote up 0 vote down
print_r( debug_backtrace() );

or something like that :-)

link|flag
vote up 2 vote down

Xdebug, by Derick Rethans, is very good. I used it some time ago and found it was not so easy to install. Once you're done, you won't understand how you managed without it :-)

There is a good article on Zend Developer Zone (installing on Linux doesn't seem any easier) and even a Firefox plugin, which I never used.

link|flag
Its not just installing that's frustrating. Configuring Xdebug to work with Eclipse can be a nightmare. I was able to get Xdebug installed on CentOS 5 but EclipsePDT+Xdebug dont want to co-operate :( – Jahangir Sep 22 '08 at 14:34
vote up 2 vote down

In all honesty, a combination of print and print_r() to print out the variables. I know that many prefer to use other more advanced methods but I find this the easiest to use.

I will say that I didn't fully appreciate this until I did some Microprocessor programming at Uni and was not able to use even this.

link|flag
I am glad you mentioned print as well as print_r, I use a basic print to see if the code executed to a certain point, which helps isolating the problem. – Brad Oct 22 '08 at 12:14
I use both print and var_dump(). I use print to display debug messages and information and var_dump to indicate the state of variables as things progress. – Good Time Tribe Sep 9 at 15:38
vote up 0 vote down

+1 for print_r(). Use it to dump out the contents of an object or variable. To make it more readable, do it with a pre tag so you don't need to view source.

echo '<pre>';
print_r($arrayOrObject);

Also var_dump($thing) - this is very useful to see the type of subthings

link|flag
vote up 13 vote down

You can use Firephp an add-on to firebug to debug php in the same environment as javascript.

I also use Xdebug mentioned earlier for profiling php.

link|flag
vote up 0 vote down

Depending on the issue I like a combination of error_reporting(E_ALL) mixed with echo tests (to find the offending line/file the error happened in initally; you KNOW it's not always the line/file php tells you right?), IDE brace matching (to resolve "Parse error: syntax error, unexpected $end" issues), and print_r(); exit; dumps (real programmers view the source ;p).

You also can't beat phpdebug (check sourceforge) with "memory_get_usage();" and "memory_get_peak_usage();" to find the problem areas.

link|flag
vote up 5 vote down

1) I use print_r(). In TextMate, I have a snippet for 'pre' which expands to this:

echo "<pre>";
print_r();
echo "</pre>";

2) I use Xdebug, but haven't been able to get the GUI to work right on my Mac. It at least prints out a readable version of the stack trace.

link|flag
I'm sure you mean echo "</pre>"; at the end though. – altermativ Jul 29 at 13:18
Yes, I did. Thanks for catching it! Now corrected. – jlleblanc Jul 29 at 22:17
vote up 0 vote down

In a production environment, I log relevant data to the server's error log with error_log().

link|flag
vote up 1 vote down

i use zend studio for eclipse with the built in debugger. Its still slow compared to debugging with eclipse pdt with xdebug. Hopefully they will fix those issues, the speed has improved over the recent releases but still stepping over things takes 2-3 seconds. The zend firefox toolbar really makes things easy (debug next page, current page, etc). Also it provides a profiler that will benchmark your code and provide pie-charts, execution time, etc.

link|flag
vote up 1 vote down

For the really gritty problems that would be too time consuming to use print_r/echo to figure out I use my IDE's (PhpEd) debugging feature. Unlike other IDEs I've used, PhpEd requires pretty much no setup. the only reason I don't use it for any problems I encounter is that it's painfully slow. I'm not sure that slowness is specific to PhpEd or any php debugger. PhpEd is not free but I believe it uses one of the open-source debuggers (like XDebug previously mentioned) anyway. The benefit with PhpEd, again, is that it requires no setup which I have found really pretty tedious in the past.

link|flag
vote up 0 vote down

Manual debugging is generally quicker for me - var_dump() and debug_print_backtrace() are all the tools you need to arm your logic with.

link|flag
vote up 6 vote down

XDebug is essential for development. I install it before any other extension. It gives you stack traces on any error and you can enable profiling easily.

For a quick look at a data structure use var_dump(). Don't use print_r() because you'll have to surround it with <pre> and it only prints one var at a time.

<?php var_dump(__FILE__, __LINE__, $_REQUEST); ?>

For a real debugging environment the best I've found is Komodo IDE but it costs $$.

link|flag
vote up 0 vote down

Komodo IDE works well with xdebug, even for the remore debugging. It needs minimum amount of configuration. All you need is a version of php that Komodo can use locally to step through the code on a breakpoint. If you have the script imported into komodo project, then you can set breakpoints with a mouse-click just how you would set it inside eclipse for debugging a java program. Remote debugging is obviously more tricky to get it to work correctly ( you might have to map the remote url with a php script in your workspace ) than a local debugging setup which is pretty easy to configure if you are on a MAC or a linux desktop.

link|flag
vote up 0 vote down

The integrated debuggers where you can watch the values of variable change as you step through code are really cool. They do, however, require software setup on the server and a certain amount of configuration on the client. Both of which require periodic maintenance to keep in good working order.

A print_r is easy to write and is guaranteed to work in any setup.

link|flag
vote up 1 vote down

I use Netbeans with XDebug. Check it out at its website for docs on how to configure it. http://php.netbeans.org/

link|flag
vote up 4 vote down

Xdebug and the DBGp plugin for Notepad++ for heavy duty bug hunting, FirePHP for lightweight stuff. Quick and dirty? Nothing beats dBug.

link|flag
Thanks for the link to dBug. It's pretty neat. – Sylverdrag Apr 22 at 17:14
Wow. dBug is great! Thanks for the link – Cassy May 9 at 17:20
vote up 1 vote down

PhpEdit has a built in debugger, but I usually end up using echo(); and print_r(); the old fashioned way!!

link|flag
vote up 0 vote down

Well, to some degree it depends on where things are going south. That's the first thing I try to isolate, and then I'll use echo/print_r() as necessary.

NB: You guys know that you can pass true as a second argument to print_r() and it'll return the output instead of printing it? E.g.:

echo "<pre>".print_r($var, true)."</pre>";
link|flag
I just wrap that in a function called debug. So then I can do debug($var); – jdelator Oct 30 '08 at 22:03
vote up 0 vote down

Usually I find create a custom log function able to save on file, store debug info, and eventually re-print on a common footer.

You can also override common Exception class, so that this type of debugging is semi-automated.

link|flag
vote up 1 vote down

Output buffering is very useful if you don't want to mess up your output. I do this in a one-liner which I can comment/uncomment at will

 ob_start();var_dump(); user_error(ob_get_contents()); ob_get_clean();
link|flag
vote up 2 vote down

PhpEd is really good. You can step into/over/out of functions. You can run ad-hoc code, inspect variables, change variables. It is amazing.

link|flag
vote up 2 vote down

This is my little debug environment:

error_reporting(E_ALL | E_STRICT);
assert_options(ASSERT_ACTIVE, 1);
assert_options(ASSERT_WARNING, 0);
assert_options(ASSERT_BAIL, 0);
assert_options(ASSERT_QUIET_EVAL, 0);
assert_options(ASSERT_CALLBACK, 'assert_callcack');
set_error_handler('error_handler');
set_exception_handler('exception_handler');
register_shutdown_function('shutdown_handler');

function assert_callcack($file, $line, $message) {
	throw new Customizable_Exception($message, null, $file, $line);
}

function error_handler($errno, $error, $file, $line, $vars) {
	if ($errno === 0 || ($errno & error_reporting()) === 0) {
		return;
	}

	throw new Customizable_Exception($error, $errno, $file, $line);
}

function exception_handler(Exception $e) {
	// Do what ever!
	echo '<pre>', print_r($e, true), '</pre>';
	exit;
}

function shutdown_handler() {
	try {
		if (null !== $error = error_get_last()) {
			throw new Customizable_Exception($error['message'], $error['type'], $error['file'], $error['line']);
		}
	} catch (Exception $e) {
		exception_handler($e);
	}
}

class Customizable_Exception extends Exception {
	public function __construct($message = null, $code = null, $file = null, $line = null) {
		if ($code === null) {
			parent::__construct($message);
		} else {
			parent::__construct($message, $code);
		}
		if ($file !== null) {
			$this->file = $file;
		}
		if ($line !== null) {
			$this->line = $line;
		}
	}
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.