From: Andrea Faulds Date: Sun, 20 Mar 2016 22:07:14 +0000 (+0000) Subject: Use "Standard input code" instead of "php://stdin" X-Git-Tag: php-7.2.0alpha1~950 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3ed8b7a87b5383f9ba99a0bbcea6e9fe7a070946;p=php Use "Standard input code" instead of "php://stdin" --- diff --git a/main/main.c b/main/main.c index 703aa69263..b9e4a1083e 100644 --- a/main/main.c +++ b/main/main.c @@ -2483,7 +2483,7 @@ PHPAPI int php_execute_script(zend_file_handle *primary_file) * otherwise it will get opened and added to the included_files list in zend_execute_scripts */ if (primary_file->filename && - strcmp("php://stdin", primary_file->filename) && + strcmp("Standard input code", primary_file->filename) && primary_file->opened_path == NULL && primary_file->type != ZEND_HANDLE_FILENAME ) { diff --git a/sapi/cgi/cgi_main.c b/sapi/cgi/cgi_main.c index bf33dc109b..7ded894f17 100644 --- a/sapi/cgi/cgi_main.c +++ b/sapi/cgi/cgi_main.c @@ -2431,7 +2431,7 @@ consult the installation file that came with this distribution, or visit \n\ file_handle.filename = SG(request_info).path_translated; file_handle.handle.fp = NULL; } else { - file_handle.filename = "php://stdin"; + file_handle.filename = "Standard input code"; file_handle.type = ZEND_HANDLE_FP; file_handle.handle.fp = stdin; } diff --git a/sapi/cgi/tests/007.phpt b/sapi/cgi/tests/007.phpt index ed83db0cf3..841137a046 100644 --- a/sapi/cgi/tests/007.phpt +++ b/sapi/cgi/tests/007.phpt @@ -17,6 +17,6 @@ var_dump(`"$php" -n -s -w -l`); --EXPECTF-- string(25) "No input file specified. " -string(41) "No syntax errors detected in php://stdin +string(49) "No syntax errors detected in Standard input code " ===DONE=== diff --git a/sapi/cli/php_cli.c b/sapi/cli/php_cli.c index 28a5a7c108..65a0a63505 100644 --- a/sapi/cli/php_cli.c +++ b/sapi/cli/php_cli.c @@ -945,7 +945,7 @@ static int do_cli(int argc, char **argv) /* {{{ */ /* here but this would make things only more complicated. And it */ /* is consitent with the way -R works where the stdin file handle*/ /* is also accessible. */ - file_handle.filename = "php://stdin"; + file_handle.filename = "Standard input code"; file_handle.handle.fp = stdin; } file_handle.type = ZEND_HANDLE_FP; @@ -984,7 +984,7 @@ static int do_cli(int argc, char **argv) /* {{{ */ PG(during_request_startup) = 0; switch (behavior) { case PHP_MODE_STANDARD: - if (strcmp(file_handle.filename, "php://stdin")) { + if (strcmp(file_handle.filename, "Standard input code")) { cli_register_file_handles(); } diff --git a/sapi/cli/tests/015.phpt b/sapi/cli/tests/015.phpt index da2b64617d..62a007b6e4 100644 --- a/sapi/cli/tests/015.phpt +++ b/sapi/cli/tests/015.phpt @@ -24,7 +24,7 @@ echo "Done\n"; PHP %d.%d.%d%s(cli) (built: %s)%s Array ( - [0] => php://stdin + [0] => Standard input code [1] => foo [2] => bar [3] => baz