/PHP-8.1/sapi/phpdbg/ |
H A D | phpdbg_cmd.c | 31 if (command->parent) { in ZEND_EXTERN_MODULE_GLOBALS() 32 memcpy(&buffer[pos], command->parent->name, command->parent->name_len); in ZEND_EXTERN_MODULE_GLOBALS() 38 memcpy(&buffer[pos], command->name, command->name_len); in ZEND_EXTERN_MODULE_GLOBALS() 467 if (command) { in phpdbg_stack_verify() 498 arg = command->args; in phpdbg_stack_verify() 560 command->args, in phpdbg_stack_verify() 576 while (command && command->name && command->handler) { in phpdbg_stack_resolve() 589 if ((name->len != command->name_len && command->alias) || name->len == command->name_len) { in phpdbg_stack_resolve() 605 command++; in phpdbg_stack_resolve() 654 return phpdbg_stack_resolve(command->subs, command, top); in phpdbg_stack_resolve() [all …]
|
H A D | phpdbg_parser.y | 67 : command { $$ = $1; } 68 | input T_SEPARATOR command { phpdbg_stack_separate($1.top); $$ = $3; } 72 command
|
/PHP-8.1/ext/standard/tests/misc/ |
H A D | exec_basic1.phpt | 2 exec, system, passthru — Basic command execution functions 10 $cmd = "echo abc\n\0command"; 28 exec(): Argument #1 ($command) must not contain any null bytes 29 system(): Argument #1 ($command) must not contain any null bytes 30 passthru(): Argument #1 ($command) must not contain any null bytes
|
/PHP-8.1/ext/standard/tests/streams/ |
H A D | bug61019.phpt | 2 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"; 72 External command executed 73 External command exit: 0
|
H A D | proc_open_bug60120.phpt | 22 $command = sprintf("%s -n %s", PHP_BINARY, $file); 25 $command, 43 $command));
|
/PHP-8.1/ext/phar/phar/ |
H A D | clicommand.inc | 13 * @brief Abstract base console command implementation 33 self::error("No command given, check ${argv[0]} help\n"); 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."; [all …]
|
/PHP-8.1/ext/standard/ |
H A D | exec.c | 474 char *command; in PHP_FUNCTION() local 478 Z_PARAM_STRING(command, command_len) in PHP_FUNCTION() 482 if (command_len != strlen(command)) { in PHP_FUNCTION() 486 RETVAL_STR(php_escape_shell_cmd(command)); in PHP_FUNCTION() 516 char *command; local 522 Z_PARAM_STRING(command, command_len) 529 if (strlen(command) != command_len) { 535 if ((in=VCWD_POPEN(command, "rt"))==NULL) { 537 if ((in=VCWD_POPEN(command, "r"))==NULL) { 539 php_error_docref(NULL, E_WARNING, "Unable to execute '%s'", command);
|
H A D | proc_open.h | 44 zend_string *command; member
|
/PHP-8.1/ext/com_dotnet/tests/ |
H A D | bug77578.phpt | 12 $command = "$php $iniopt -d extension=com_dotnet -d com.autoregister_typelib=1 -r \"new COM('WbemSc… 13 exec($command, $output, $status);
|
/PHP-8.1/ext/pdo_mysql/tests/ |
H A D | pdo_mysql_inTransaction.phpt | 22 foreach ([$begin, $end] as $command) { 25 $db->exec($command); 28 $db->query($command)->execute(); 32 $db->prepare($command)->execute();
|
H A D | bug71145.phpt | 2 Bug #71145: Multiple statements in init command triggers unbuffered query error
|
/PHP-8.1/ext/standard/tests/general_functions/ |
H A D | proc_open_array.phpt | 2 Using proc_open() with a command array (no shell) 13 echo "Empty command array:\n"; 70 Empty command array: 71 proc_open(): Argument #1 ($command) must have at least one element
|
H A D | proc_open02.phpt | 36 ["command"]=> 55 ["command"]=>
|
H A D | escapeshellcmd_bug71039.phpt | 10 Fatal error: Uncaught ValueError: escapeshellcmd(): Argument #1 ($command) must not contain any nul…
|
H A D | ghsa-9fcc-425m-g385_001.phpt | 39 '"%sghsa-9fcc-425m-g385_001.bat."' is not recognized as an internal or external command, 49 '"%sghsa-9fcc-425m-g385_001.bat. ... . ."' is not recognized as an internal or external command,
|
/PHP-8.1/ext/standard/tests/file/ |
H A D | popen_pclose_basic.phpt | 24 echo "-- Testing popen(): reading from a file using 'cat' command --\n"; 27 $command = "cat $filename"; 28 $file_handle = popen($command, "r"); 69 -- Testing popen(): reading from a file using 'cat' command --
|
/PHP-8.1/ext/pgsql/tests/ |
H A D | README.md | 12 If you have account and database, type `createdb test` from command prompt to 13 create the database to execute the test scripts. By executing the above command
|
/PHP-8.1/.circleci/ |
H A D | config.yml | 31 command: | 89 command: | 169 command: make -j2 > /dev/null 172 command: | 180 command: |
|
/PHP-8.1/TSRM/ |
H A D | tsrm_win32.h | 97 TSRM_API FILE *popen_ex(const char *command, const char *type, const char *cwd, const char *env); 98 TSRM_API FILE *popen(const char *command, const char *type);
|
/PHP-8.1/sapi/phpdbg/tests/ |
H A D | bug73794.phpt | 2 Bug #73794 (Crash (out of memory) when using run and # command separator)
|
H A D | next_001.phpt | 2 Test next command on function boundaries
|
/PHP-8.1/ext/mysqlnd/ |
H A D | mysqlnd_ext_plugin.h | 120 } command; member 156 #define mysqlnd_command_get_methods() mysqlnd_plugin_methods_xetters.command.get() 157 #define mysqlnd_command_set_methods(m) mysqlnd_plugin_methods_xetters.command.set((m))
|
/PHP-8.1/ext/ftp/ |
H A D | ftp.stub.php | 29 function ftp_exec(FTP\Connection $ftp, string $command): bool {} argument 35 function ftp_raw(FTP\Connection $ftp, string $command): ?array {} argument 85 function ftp_site(FTP\Connection $ftp, string $command): bool {} argument
|
/PHP-8.1/Zend/ |
H A D | zend_virtual_cwd.h | 178 CWD_API FILE *virtual_popen(const char *command, const char *type); 273 #define VCWD_POPEN(command, type) virtual_popen(command, type) argument 322 #define VCWD_POPEN(command, type) popen(command, type) argument
|
/PHP-8.1/ext/ftp/tests/ |
H A D | ftp_site_basic.phpt | 23 Warning: ftp_site(): Syntax error, command unrecognized. in %s on line %d
|