Home
last modified time | relevance | path

Searched refs:command (Results 1 – 25 of 159) sorted by relevance

1234567

/PHP-5.6/sapi/phpdbg/
H A Dphpdbg_cmd.c32 if (command->parent) { in phpdbg_command_name()
33 memcpy(&buffer[pos], command->parent->name, command->parent->name_len); in phpdbg_command_name()
39 memcpy(&buffer[pos], command->name, command->name_len); in phpdbg_command_name()
468 if (command) { in phpdbg_stack_verify()
500 arg = command->args; in phpdbg_stack_verify()
559 command->args, in phpdbg_stack_verify()
575 while (command && command->name && command->handler) { in phpdbg_stack_resolve()
590 if (((name->len != command->name_len) && command->alias) || in phpdbg_stack_resolve()
605 command++; in phpdbg_stack_resolve()
662 return phpdbg_stack_resolve(command->subs, command, top, why); in phpdbg_stack_resolve()
[all …]
H A DChangelog.md11 5. Fix crash when loading .phpdbginit with command line switch
22 1. Added "break delete <id>" command
23 2. Added "break opcode <opcode>" command
24 3. Added "set" command - control prompt and console colors
26 5. Added source command - load additional .phpdbginit script during session
28 7. Added info memory command
39 - shell (shell a command)
40 - register (register a function for use as a command)
43 4. Include all alias information and sub-command information in help
/PHP-5.6/ext/standard/tests/streams/
H A Dbug61019.phpt2 Bug #61019 (Out of memory on command stream_get_contents)
26 echo "External command executed\n";
42 echo "External command exit: ".$process_state['exitcode']."\n";
67 echo "Can't start external command\n";
73 External command executed
74 External command exit: 0
/PHP-5.6/TSRM/
H A Dtsrm_nw.c55 char *command = NULL, *argv[MAX_ARGS] = {'\0'}, **env = NULL; local
130 command = (char*)malloc(ptrLen + 1);
131 if (!command) {
136 strcpy (command, ptr);
145 if (command)
146 free (command);
215 if (command)
216 free (command);
H A Dtsrm_nw.h26 TSRM_API FILE* popen(const char *command, const char *type);
H A Dtsrm_win32.h98 TSRM_API FILE *popen_ex(const char *command, const char *type, const char *cwd, char *env TSRMLS_DC…
99 TSRM_API FILE *popen(const char *command, const char *type);
/PHP-5.6/ext/phar/phar/
H A Dclicommand.inc13 * @brief Abstract base console command implementation
37 $command = $argv[1];
40 if (isset($this->cmds[$command]['arg'])) {
49 …self::error("Missing argument to parameter '$arg' of command '$command', check ${argv[0]} help\n");
54 self::error("Unknown parameter '${argv[$i]}' to command $command, check ${argv[0]} help\n");
64 … self::error("Missing default trailing arguments to command $command, check ${argv[0]} help\n");
73 self::error("Unexpected default arguments to command $command, check ${argv[0]} help\n");
78 $missing .= "Missing parameter '-$arg' to command $command, check ${argv[0]} help\n";
230 return "This help or help for a selected command.";
292 self::error("More than one command given.\n");
[all …]
/PHP-5.6/ext/standard/tests/file/
H A Dpopen_pclose_basic.phpt12 * Prototype: resource popen ( string command, string mode )
33 echo "-- Testing popen(): reading from a file using 'cat' command --\n";
36 $command = "cat $filename";
37 $file_handle = popen($command, "r");
79 -- Testing popen(): reading from a file using 'cat' command --
H A Dpopen_pclose_error-win32.phpt13 * Prototype: resource popen ( string command, string mode )
58 --- Done ---'abc.txt' is not recognized as an internal or external command,
H A Dpopen_pclose_error-win32-debug.phpt16 * Prototype: resource popen ( string command, string mode )
62 --- Done ---'abc.txt' is not recognized as an internal or external command,
/PHP-5.6/sapi/cli/
H A DREADME1 The CLI (command line interface) SAPI has been introduced
18 the command line (e.g. php -r 'echo md5("test");' )
19 * Other more sophisticated command line switches (see: man php)
/PHP-5.6/ext/standard/
H A Dexec.c481 char *command; in PHP_FUNCTION() local
485 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &command, &command_len) == FAILURE) { in PHP_FUNCTION()
490 if (command_len != strlen(command)) { in PHP_FUNCTION()
494 cmd = php_escape_shell_cmd(command); in PHP_FUNCTION()
531 char *command; local
536 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &command, &command_len) == FAILURE) {
541 if ((in=VCWD_POPEN(command, "rt"))==NULL) {
543 if ((in=VCWD_POPEN(command, "r"))==NULL) {
545 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to execute '%s'", command);
H A Dproc_open.c278 pefree(proc->command, proc->is_persistent); in proc_open_rsrc_dtor()
365 add_assoc_string(return_value, "command", proc->command, 1); in PHP_FUNCTION()
454 char *command, *cwd=NULL; in PHP_FUNCTION() local
502 command = pestrdup(command, is_persistent); in PHP_FUNCTION()
522 command_len = strlen(command); in PHP_FUNCTION()
761 spprintf(&command_with_cmd, 0, "%s /c %s", COMSPEC_NT, command); in PHP_FUNCTION()
799 command_dup = strdup(command); in PHP_FUNCTION()
884 execle("/bin/sh", "sh", "-c", command, NULL, env.envarray); in PHP_FUNCTION()
886 execl("/bin/sh", "sh", "-c", command, NULL); in PHP_FUNCTION()
912 proc->command = command; in PHP_FUNCTION()
[all …]
H A Dproc_open.h48 char *command; member
/PHP-5.6/ext/standard/tests/misc/
H A Dexec_basic1.phpt2 exec, system, passthru — Basic command execution functions
10 $cmd = "echo abc\n\0command";
/PHP-5.6/ext/pgsql/tests/
H A DREADME10 If you have account and database, type "createdb test" from command prompt
12 command as the same user running the tests you ensure that the user is
/PHP-5.6/ext/standard/tests/general_functions/
H A Dproc_open02.phpt36 ["command"]=>
55 ["command"]=>
H A Dbug39322.phpt28 ["command"]=>
H A Dbug69646.phpt2 Bug #69646 OS command injection vulnerability in escapeshellarg()
/PHP-5.6/ext/imap/tests/
H A Dbug77020.phpt13 Warning: imap_mail(): No message string in mail command in %s on line %d
/PHP-5.6/Zend/
H A Dzend_virtual_cwd.h173 CWD_API FILE *virtual_popen(const char *command, const char *type TSRMLS_DC);
277 #define VCWD_POPEN(command, type) virtual_popen(command, type TSRMLS_CC) argument
313 #define VCWD_POPEN(command, type) popen(command, type) argument
/PHP-5.6/ext/snmp/tests/
H A DREADME19 To run test suite you may use this command (presuming that you pwd is where
41 Alternatively you can start snmpd daemon using following command line:
/PHP-5.6/sapi/aolserver/
H A DREADME47 The 'map' command will cause AOLserver to pass all requests to *.php to
52 The 'php_value "name val"' command assigns the configuration option name
/PHP-5.6/win32/build/
H A Dtemplate.dsp9 !MESSAGE use the Export Makefile command and run
14 !MESSAGE by defining the macro CFG on the command line. For example:
/PHP-5.6/ext/fileinfo/tests/
H A Dfinfo_file_regex.phpt9 * Works with the unix file command:

Completed in 52 milliseconds

1234567