1phpdbg(1) Scripting Language phpdbg(1)
2
3
4
6 phpdbg - The interactive PHP debugger
7
9 phpdbg [options] [file] [args...]
10
12 phpdbg is a lightweight, powerful, easy to use debugging platform for
13 PHP.
14
16 -c path|file Look for php.ini file in the directory path or use the
17 specified file
18
19 -d foo[=bar] Define INI entry foo with value bar
20
21 -n No php.ini file will be used
22
23 -z file Load Zend extension file
24
25 -q Do not print banner on startup
26
27 -v Enable oplog output
28
29 -b Disables use of color on the console
30
31 -i path|file Override .phpgdbinit location (implies -I)
32
33 -I Ignore .phpdbginit (default init file)
34
35 -O file Set oplog output to file
36
37 -r Jump straight to run
38
39 -e Generate extended information for debugger/profiler
40
41 -E Enable step through eval()
42
43 -s delimiter Read code to execute from stdin with an optional delim‐
44 iter
45
46 -S sapi_name Override SAPI name
47
48 -l port Setup remote console port
49
50 -a address Setup remote console bind address
51
52 -x Enable XML output
53
54 -p opcode Output opcodes and quit
55
56 -h Print the help overview
57
58 -V Version number
59
60 args... Arguments passed to script. Use '--' args when first
61 argument starts with '-' or script is read from stdin
62
64 Passing -rr will cause phpdbg to quit after execution, rather than
65 returning to the console
66
68 php.ini The standard configuration file
69
70 .phpdbginit The init file
71
73 The online manual can be found at
74 http://php.net/manual/book.phpdbg.php
75
77 You can view the list of known bugs or report any new bug you found at
78 http://bugs.php.net/
79
81 Written by Felipe Pena, Joe Watkins and Bob Weinand, formatted by
82 Ondřej Surý for Debian project.
83
84 A List of active developers can be found at
85 http://www.php.net/credits.php
86
87 And last but not least PHP was developed with the help of a huge amount
88 of contributors all around the world.
89
91 This manpage describes phpdbg, for PHP version 7.3.12.
92
94 Copyright © 1997-2018 The PHP Group
95
96 This source file is subject to version 3.01 of the PHP license, that is
97 bundled with this package in the file LICENSE, and is available through
98 the world-wide-web at the following url:
99 http://www.php.net/license/3_01.txt
100
101 If you did not receive a copy of the PHP license and are unable to
102 obtain it through the world-wide-web, please send a note to
103 license@php.net so we can mail you a copy immediately.
104
105
106
107The PHP Group 2018 phpdbg(1)