What are the #PHP features you use for debugging purposes ?
- Print_r()
- var_dump()
- assert()
- debug_backtrace_*()
What else?
What are the #PHP features you use for debugging purposes ?
What else?
For further actions, you may consider blocking this person and/or reporting abuse
Atharva_404 -
HstSethi -
Jayshri Landge -
Shola Jegede -
Top comments (5)
If in the Laravel ecosystem (and/or Symfony), the
dump()
anddd()
helpersJust don't forget to remove the dd()/debug() calls before sending the PR off for review. ðĪŠ
XDebug
Var_dump Always for me