Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
docs:mac:builds:xdebug [2013/06/13 22:52] – [Xdebug] billh | docs:mac:builds:xdebug [2014/02/21 16:06] (current) – billh | ||
---|---|---|---|
Line 19: | Line 19: | ||
</ | </ | ||
* edit php.ini (if php was built as shown on this wiki, edit or create php.ini in / | * edit php.ini (if php was built as shown on this wiki, edit or create php.ini in / | ||
- | # set up xdebug | + | ; set up xdebug |
zend_extension="/ | zend_extension="/ | ||
xdebug.remote_enable=1 | xdebug.remote_enable=1 | ||
Line 47: | Line 47: | ||
xdebug.show_mem_delta = On | xdebug.show_mem_delta = On | ||
</ | </ | ||
- | | + | |
+ | ===== Debugging ===== | ||
+ | | ||
+ | php -dxdebug.remote_autostart=On myprogram.php | ||
+ | </ | ||
+ | * Be sure to download Xdebug Helper extension (Chrome), or The easiest Xdebug (Firefox). | ||
+ | * for more information, | ||
===== xdebug gotchas ===== | ===== xdebug gotchas ===== | ||
xdebug overloads several php functions, so they don't work exactly as they did before. | xdebug overloads several php functions, so they don't work exactly as they did before. | ||
Line 53: | Line 60: | ||
ini_set(" | ini_set(" | ||
</ | </ | ||
- | |||