phpdbg.1 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. .TH PHPDBG 1
  2. .SH NAME
  3. phpdbg \- The interactive PHP debugger
  4. .SH SYNOPSIS
  5. .B phpdbg
  6. [OPTION]
  7. [\fB\-e\fIFILE\fR]
  8. .SH DESCRIPTION
  9. .B phpdbg
  10. a lightweight, powerful, easy to use debugging platform for PHP5.
  11. .SH OPTIONS
  12. The following switches are implemented (just like cli SAPI):
  13. .TP
  14. .BR \-n
  15. No \fBphp.ini\fR file will be used
  16. .TP
  17. .BR \-c \fIpath\fB|\fIfile\fR
  18. Look for \fBphp.ini\fR file in the directory \fIpath\fR or use the specified \fIfile\fR
  19. .TP
  20. .BR \-z \fIfile\fR
  21. Load Zend extension \fIfile\fR
  22. .TP
  23. .BR \-d \fIfoo\fB[=\fIbar\fB]\fR
  24. Define INI entry \fIfoo\fR with value \fIbar\fR
  25. .PP The following switches change the default behaviour of phpdbg:
  26. .TP
  27. .BR \-v
  28. Disables quietness
  29. .TP
  30. .BR \-s
  31. Enabled stepping
  32. .TP
  33. .BR -e \fIfile\fR
  34. Sets execution context
  35. .TP
  36. .BR \-b
  37. Disables use of colour on the console
  38. .TP
  39. .BR \-I
  40. Ignore .phpdbginit (default init file)
  41. .TP
  42. .BR \-i \fIpath\fB|\ffile\fR
  43. Override .phpgdbinit location (implies -I)
  44. .TP
  45. .BR \-O \fIfile\fR
  46. Set oplog output to \fIfile\fR
  47. .TP
  48. .BR \-q
  49. Do not print banner on startup
  50. .TP
  51. .BR \-r
  52. Jump straight to run
  53. .TP
  54. .BR \-E
  55. Enable step through eval()
  56. .SH NOTES
  57. Passing -rr will cause phpdbg to quit after execution, rather than returning to the console
  58. .SH AUTHOR
  59. Written by Felipe Pena, Joe Watkins and Bob Weinand, formatted by Ondřej Surý for Debian project.