phpdbg.1.in 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. .TH @program_prefix@phpdbg 1 "2021" "The PHP Group" "Scripting Language"
  2. .SH NAME
  3. @program_prefix@phpdbg \- The interactive PHP debugger
  4. .SH SYNOPSIS
  5. .B @program_prefix@phpdbg
  6. [options]
  7. [\fIfile\fP]
  8. [\fIargs...\fP]
  9. .SH DESCRIPTION
  10. .B phpdbg
  11. is a lightweight, powerful, easy to use debugging platform for PHP.
  12. .SH OPTIONS
  13. .TP 15
  14. .B \-c \fIpath\fB|\fIfile\fR
  15. Look for
  16. .B php.ini
  17. file in the directory
  18. .IR path
  19. or use the specified
  20. .IR file
  21. .TP
  22. .B \-d \fIfoo\fP[=\fIbar\fP]
  23. Define INI entry
  24. .IR foo
  25. with value
  26. .IR bar
  27. .TP
  28. .B \-n
  29. No
  30. .B php.ini
  31. file will be used
  32. .TP
  33. .B \-z \fIfile\fR
  34. Load Zend extension
  35. .IR file
  36. .TP
  37. .BR \-q
  38. Do not print banner on startup
  39. .TP
  40. .B \-v
  41. Enable oplog output
  42. .TP
  43. .B \-b
  44. Disables use of color on the console
  45. .TP
  46. .B \-i \fIpath\fB|\fIfile\fR
  47. Override .phpgdbinit location (implies -I)
  48. .TP
  49. .B \-I
  50. Ignore .phpdbginit (default init file)
  51. .TP
  52. .B \-r
  53. Jump straight to run
  54. .TP
  55. .B -e
  56. Generate extended information for debugger/profiler
  57. .TP
  58. .B \-E
  59. Enable step through eval()
  60. .TP
  61. .B \-s \fIdelimiter\fP
  62. Read code to execute from stdin with an optional
  63. .IR delimiter
  64. .TP
  65. .B \-S \fIsapi_name\fP
  66. Override SAPI name
  67. .TP
  68. .B \-p \fIopcode\fP
  69. Output opcodes and quit
  70. .TP
  71. .B \-h
  72. Print the help overview
  73. .TP
  74. .B \-V
  75. Version number
  76. .TP
  77. .IR args.\|.\|.
  78. Arguments passed to script. Use
  79. .B '\-\-'
  80. .IR args
  81. when first argument starts with
  82. .B '\-'
  83. or script is read from stdin
  84. .SH NOTES
  85. Passing
  86. .B \-rr
  87. will cause
  88. .B phpdbg
  89. to quit after execution, rather than returning to the console
  90. .SH FILES
  91. .TP 15
  92. .B php.ini
  93. The standard configuration file
  94. .TP
  95. .B .phpdbginit
  96. The init file
  97. .SH SEE ALSO
  98. The online manual can be found at
  99. .PD 0
  100. .P
  101. .B http://php.net/manual/book.phpdbg.php
  102. .PD 1
  103. .SH BUGS
  104. You can view the list of known bugs or report any new bug you
  105. found at
  106. .PD 0
  107. .P
  108. .B http://bugs.php.net/
  109. .PD 1
  110. .SH AUTHORS
  111. Written by Felipe Pena, Joe Watkins and Bob Weinand, formatted by Ondřej Surý for Debian project.
  112. .P
  113. A List of active developers can be found at
  114. .PD 0
  115. .P
  116. .B http://www.php.net/credits.php
  117. .PD 1
  118. .P
  119. And last but not least PHP was developed with the help of a huge amount of
  120. contributors all around the world.
  121. .SH VERSION INFORMATION
  122. This manpage describes \fBphpdbg\fP, for PHP version @PHP_VERSION@.
  123. .SH COPYRIGHT
  124. Copyright \(co The PHP Group
  125. .LP
  126. This source file is subject to version 3.01 of the PHP license,
  127. that is bundled with this package in the file LICENSE, and is
  128. available through the world-wide-web at the following url:
  129. .PD 0
  130. .P
  131. .B https://www.php.net/license/3_01.txt
  132. .PD 1
  133. .P
  134. If you did not receive a copy of the PHP license and are unable to
  135. obtain it through the world-wide-web, please send a note to
  136. .B license@php.net
  137. so we can mail you a copy immediately.