Home
last modified time | relevance | path

Searched refs:phpdbg (Results 1 – 25 of 50) sorted by relevance

12

/PHP-7.3/sapi/phpdbg/
H A DMakefile.frag1 phpdbg: $(BUILD_BINARY)
3 phpdbg-shared: $(BUILD_SHARED)
17 …ir); $(RE2C) $(RE2C_FLAGS) --no-generation-date -cbdFo sapi/phpdbg/phpdbg_lexer.c sapi/phpdbg/phpd…
23 install-phpdbg: $(BUILD_BINARY)
28 …@$(INSTALL) -m 0755 $(BUILD_BINARY) $(INSTALL_ROOT)$(bindir)/$(program_prefix)phpdbg$(program_suff…
31 …@$(INSTALL_DATA) sapi/phpdbg/phpdbg.1 $(INSTALL_ROOT)$(mandir)/man1/$(program_prefix)phpdbg$(progr…
33 clean-phpdbg:
35 find sapi/phpdbg/ -name *.lo -o -name *.o | xargs rm -f
37 test-phpdbg:
39 @$(top_builddir)/sapi/cli/php sapi/phpdbg/tests/run-tests.php --phpdbg sapi/phpdbg/phpdbg
[all …]
H A Dconfig.m41 dnl config.m4 for sapi phpdbg
3 PHP_ARG_ENABLE(phpdbg, for phpdbg support,
4 [ --enable-phpdbg Build phpdbg], yes, yes)
6 PHP_ARG_ENABLE(phpdbg-webhelper, for phpdbg web SAPI support,
7 [ --enable-phpdbg-webhelper
10 PHP_ARG_ENABLE(phpdbg-debug, for phpdbg debug build,
11 [ --enable-phpdbg-debug Build phpdbg in debug mode], no, no)
13 PHP_ARG_ENABLE(phpdbg-readline, for phpdbg readline support,
46 …D_MAKEFILE_FRAGMENT([$abs_srcdir/sapi/phpdbg/Makefile.frag], [$abs_srcdir/sapi/phpdbg], [$abs_buil…
49 BUILD_BINARY="sapi/phpdbg/phpdbg"
[all …]
H A Dphpdbg.init.d2 # File: /etc/init.d/phpdbg #
4 # Purpose: Daemonize phpdbg automatically on boot #
6 # description: Starts, stops and restarts phpdbg daemon #
8 LOCKFILE=/var/lock/subsys/phpdbg
9 PIDFILE=/var/run/phpdbg.pid
13 # Either set path to phpdbg here or rely on phpdbg in ENV/PATH #
16 PHPDBG=$(which phpdbg 2>/dev/null)
19 # Options to pass to phpdbg upon boot #
22 LOGFILE=/var/log/phpdbg.log
32 PHPDBG=$(which phpdbg 2>>/dev/null)
H A Dconfig.w321 ARG_ENABLE('phpdbg', 'Build phpdbg', 'no');
2 ARG_ENABLE('phpdbgs', 'Build phpdbg shared', 'no');
3 ARG_ENABLE('phpdbg-webhelper', 'Build phpdbg webhelper', 'yes');
5 PHPDBG_SOURCES='phpdbg.c phpdbg_prompt.c phpdbg_cmd.c phpdbg_info.c phpdbg_help.c phpdbg_break.c ' +
10 PHPDBG_DLL='php' + PHP_VERSION + 'phpdbg.dll';
11 PHPDBG_EXE='phpdbg.exe';
19 SAPI('phpdbg', PHPDBG_SOURCES, PHPDBG_EXE, PHPDBG_CFLAGS);
H A DREADME.md4 Implemented as a SAPI module, phpdbg can exert complete control over the environment without impact…
6 phpdbg aims to be a lightweight, powerful, easy to use debugging platform for PHP 5.4+
31 To install **phpdbg**, you must compile the source against your PHP installation sources, and enabl…
35 git clone https://github.com/krakjoe/phpdbg
38 ./configure --enable-phpdbg
40 make install-phpdbg
46 **Note:** PHP must be configured with the switch --with-readline for phpdbg to support history, aut…
58 The following switches change the default behaviour of phpdbg:
74 **Note:** Passing -rr will cause phpdbg to quit after execution, rather than returning to the conso…
81 https://phpdbg.room11.org
H A D.gdbinit6 set $phpdbg = ((zend_phpdbg_globals*) (*((void ***) $tsrm_ls))[phpdbg_globals_id-1])
8 set $phpdbg = phpdbg_globals
H A D.phpdbginit9 # exec sapi/phpdbg/test.php
34 /* phpdbg_break(PHPDBG_METHOD, "phpdbg::method"); */
72 array("phpdbg"),
81 # Now carry on initializing phpdbg ...
100 # and register a new implementation for phpdbg)
H A Dtest.php8 class phpdbg { class
35 $dbg = new phpdbg();
H A Dcreate-test.php29 $phpdbg = getenv('TEST_PHPDBG_EXECUTABLE') ?: null; variable
40 $phpdbg = $argv[++$i]; variable
63 $proc = proc_open("$phpdbg $pass_options $file -- $cmdargv", [["pipe", "r"], ["pipe", "w"], ["pipe"…
H A DCREDITS1 phpdbg
H A Dphpdbg_break.c29 ZEND_EXTERN_MODULE_GLOBALS(phpdbg)
H A Dphpdbg.c60 ZEND_DECLARE_MODULE_GLOBALS(phpdbg);
803 PHP_MINIT(phpdbg),
804 PHP_MSHUTDOWN(phpdbg),
805 PHP_RINIT(phpdbg),
806 PHP_RSHUTDOWN(phpdbg),
1607 phpdbg->name = sapi_name; in main()
1611 phpdbg->phpinfo_as_text = 1; in main()
1612 phpdbg->php_ini_ignore_cwd = 1; in main()
1614 sapi_startup(phpdbg); in main()
1617 phpdbg->phpinfo_as_text = 1; in main()
[all …]
H A Dphpdbg_sigio_win32.c26 ZEND_EXTERN_MODULE_GLOBALS(phpdbg) in ZEND_EXTERN_MODULE_GLOBALS() argument
H A Dphpdbg_sigsafe.c4 ZEND_EXTERN_MODULE_GLOBALS(phpdbg) in ZEND_EXTERN_MODULE_GLOBALS() argument
H A Dphpdbg.h241 ZEND_BEGIN_MODULE_GLOBALS(phpdbg)
332 ZEND_END_MODULE_GLOBALS(phpdbg) /* }}} */
H A Dphpdbg_lexer.l29 ZEND_EXTERN_MODULE_GLOBALS(phpdbg) in ZEND_EXTERN_MODULE_GLOBALS() argument
H A Dphpdbg_eol.c26 ZEND_EXTERN_MODULE_GLOBALS(phpdbg)
H A DChangelog.md1 ChangeLog for phpdbg
/PHP-7.3/sapi/phpdbg/tests/
H A Dbug73615.phpt2 Bug #73615 (phpdbg without option never load .phpdbginit at startup)
10 $phpdbg = getenv('TEST_PHPDBG_EXECUTABLE');
14 print `$phpdbg -qn`;
H A Dset_exception_handler.phpt2 set_exception_handler() in phpdbg
H A Dbug73704.phpt2 Bug #73704 (phpdbg shows the wrong line in files with shebang)
/PHP-7.3/
H A D.gitignore113 sapi/phpdbg/phpdbg_parser.c
114 sapi/phpdbg/phpdbg_parser.h
115 sapi/phpdbg/phpdbg
116 sapi/phpdbg/phpdbg.1
117 sapi/phpdbg/build
118 sapi/phpdbg/*.output
H A Drun-tests.php125 $phpdbg = null; variable
164 $phpdbg = realpath("./sapi/phpdbg/phpdbg"); variable
168 $phpdbg = null; variable
170 if ($phpdbg) {
171 putenv("TEST_PHPDBG_EXECUTABLE=$phpdbg");
176 $phpdbg = getenv('TEST_PHPDBG_EXECUTABLE'); variable
178 if ($phpdbg=='auto') {
180 putenv("TEST_PHPDBG_EXECUTABLE=$phpdbg");
301 if ($phpdbg) {
1456 if (isset($phpdbg)) {
[all …]
/PHP-7.3/win32/build/
H A DMakefile66 sapi\phpdbg\phpdbg_parser.c \
72 sapi\phpdbg\phpdbg_parser.c sapi\phpdbg\phpdbg_lexer.c \
88 sapi\phpdbg\phpdbg_parser.c sapi\phpdbg\phpdbg_parser.h: sapi\phpdbg\phpdbg_parser.y
89 $(BISON) --output=sapi/phpdbg/phpdbg_parser.c -v -d -p phpdbg_ sapi/phpdbg/phpdbg_parser.y
98 sapi\phpdbg\phpdbg_lexer.c: sapi\phpdbg\phpdbg_lexer.l
99 …$(RE2C) $(RE2C_FLAGS) --no-generation-date -cbdFo sapi/phpdbg/phpdbg_lexer.c sapi/phpdbg/phpdbg_le…
/PHP-7.3/travis/
H A Dcompile.sh35 --enable-phpdbg \

Completed in 81 milliseconds

12