Home
last modified time | relevance | path

Searched refs:stdin (Results 1 – 25 of 44) sorted by relevance

12

/PHP-7.4/ext/standard/tests/file/
H A Dauto_detect_line_endings_2.phpt12 $stdin = fopen($filePath, "r");
13 var_dump(fgets($stdin));
14 var_dump(fgets($stdin));
15 var_dump(fgets($stdin));
H A Dbug60120.phpt2 Bug #60120 (proc_open hangs when data in stdin/out/err is getting larger or equal to 2048)
19 $cmd = 'php -r "fwrite(STDOUT, $in = file_get_contents(\'php://stdin\')); fwrite(STDERR, $in);"';
21 $stdin = str_repeat('*', 2049 );
30 $stdinLen = strlen($stdin);
48 $written = fwrite($writePipes[0], substr($stdin, $stdinOffset), 8192);
H A Dfile_get_contents_error001.phpt14 var_dump(file_get_contents("php://stdin",null,null,8000,1));
/PHP-7.4/sapi/cli/tests/
H A D012-2.phpt31 string(57) "Either execute direct code, process stdin or use a file.
33 string(57) "Either execute direct code, process stdin or use a file.
36 string(57) "Either execute direct code, process stdin or use a file.
38 string(57) "Either execute direct code, process stdin or use a file.
40 string(57) "Either execute direct code, process stdin or use a file.
42 string(57) "Either execute direct code, process stdin or use a file.
44 string(57) "Either execute direct code, process stdin or use a file.
50 string(57) "Either execute direct code, process stdin or use a file.
H A D009.phpt16 string(57) "Either execute direct code, process stdin or use a file.
18 string(57) "Either execute direct code, process stdin or use a file.
H A D022.inc6 $fd = fopen("php://stdin","r");
H A Dstd_streams.phpt17 var_dump(ftell(fopen("php://stdin", "r")));
/PHP-7.4/ext/standard/tests/streams/
H A Dproc_open_bug64438.phpt2 Bug #64438 proc_open hangs with stdin/out with 4097+ bytes
9 …$cmd = PHP_BINARY . ' -n -r "fwrite(STDOUT, $in = file_get_contents(\'php://stdin\')); fwrite(STDE…
11 …$cmd = PHP_BINARY . ' -n -r \'fwrite(STDOUT, $in = file_get_contents("php://stdin")); fwrite(STDER…
14 $stdin = str_repeat('*', 4097);
23 $stdinLen = strlen($stdin);
42 $written = fwrite($writePipes[0], substr($stdin, $stdinOffset), 8192);
H A Dbug72853.phpt13 0 => array('pipe', 'r'), // stdin
H A Dbug64770.phpt7 0 => array('pipe', 'r'), // stdin
H A Dbug78883.phpt23 // if the bug is not present, it will hang waiting for stdin,
H A Dbug60602.phpt7 0 => array('pipe', 'r'), // stdin
H A Dproc_open_bug51800_right.phpt15 0 => array("pipe", "rb"), // stdin
H A Dproc_open_bug60120.phpt2 Bug #60120 proc_open hangs with stdin/out with >2048 bytes
/PHP-7.4/ext/phar/tests/zip/
H A Dcorrupt_006.phpt2 Phar: zip with file created from stdin
8 new PharData(__DIR__ . '/files/stdin.zip');
15 phar error: Cannot process zips created from stdin (zero-length filename) in zip-based phar "%sstdi…
/PHP-7.4/sapi/phpdbg/tests/
H A Dstdin_001.phpt2 Test stdin input with breakpoints
4 stdin foo
15 prompt> [Successful compilation of stdin input]
H A Drun_002.phpt8 ev file_put_contents("run_002_tmp.fixture", "stdin\ndata")
23 string(10) "stdin
36 string(10) "stdin
/PHP-7.4/tests/run-test/
H A Dtest010.phpt6 var_dump(stream_get_contents(fopen('php://stdin', 'r')));
7 var_dump(file_get_contents('php://stdin'));
/PHP-7.4/sapi/fpm/tests/
H A Dbug73342-nonblocking-stdio.phpt2 FPM: bug73342 - Non-blocking stdin
25 stream_set_blocking(fopen('php://stdin', 'r'), false);
H A Dfcgi.inc459 * @param string $stdin Content
465 public function request(array $params, $stdin)
467 $id = $this->async_request($params, $stdin);
475 * @param string $stdin Content
481 public function request_data(array $params, $stdin)
483 $id = $this->async_request($params, $stdin);
499 * @param string $stdin Content
504 public function async_request(array $params, $stdin)
530 if ($stdin) {
531 $request .= $this->buildPacket(self::STDIN, $stdin, $id);
/PHP-7.4/ext/openssl/tests/
H A Dstream_server_reneg_limit.phpt77 list($stdin, $stdout, $stderr) = $pipes;
81 fwrite($stdin, "R\nR\nR\nR\n");
88 fclose($stdin);
/PHP-7.4/ext/gd/tests/
H A Dimageinterlace_error2.phpt12 $image = fopen('php://stdin', 'r');
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_prompt.h36 PHPDBG_COMMAND(stdin);
/PHP-7.4/tests/output/
H A Dstream_isatty.inc7 'STDIN (fopen)' => fopen('php://stdin', 'rb'),
/PHP-7.4/ext/phar/tests/zip/files/
H A Dcorrupt2.php.inc9 $a->addFile('', null, 'stdin');
10 $a->writeZip(dirname(__FILE__) . '/stdin.zip');

Completed in 43 milliseconds

12