Home
last modified time | relevance | path

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

12

/PHP-7.4/Zend/
H A Dzend_stream.c35 if (handle && (FILE*)handle != stdin) { in zend_stream_stdio_closer()
/PHP-7.4/ext/ffi/tests/
H A Dbug77706.phpt19 extern FILE *stdin;
/PHP-7.4/ext/fileinfo/
H A Dlibmagic.patch2924 - /* Place stdin in binary mode, so EOF (Ctrl+Z) doesn't stop early. */
3014 - inname == NULL ? "/dev/stdin" : inname);
/PHP-7.4/ext/gd/libgd/
H A Dgdkanji.c602 while ((c = fgetc (stdin)) != '\n' && i < BUFSIZ)
H A Dwebpng.c48 in = stdin; in main()
/PHP-7.4/ext/gd/tests/
H A Dimageinterlace_error2.phpt12 $image = fopen('php://stdin', 'r');
/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/phar/phar/
H A Dpharcommand.inc1027 "If no input file is specified as stub then stdin is being used.";
1039 $args['s']['val'] = 'php://stdin';
1081 $args['s']['val'] = 'php://stdin';
1212 "If no input file is specified for meta data then stdin is being used." .
/PHP-7.4/ext/phar/tests/zip/
H A Dbzip2.phpt29 $a->addFile('', null, 'stdin');
30 $a->writeZip(dirname(__FILE__) . '/stdin.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/ext/phar/tests/zip/files/
H A Dcorrupt2.php.inc9 $a->addFile('', null, 'stdin');
10 $a->writeZip(dirname(__FILE__) . '/stdin.zip');
/PHP-7.4/ext/standard/
H A Dphp_fopen_wrapper.c254 file = stdin; in php_stream_url_wrap_php()
/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/ext/standard/tests/streams/
H A Dbug60602.phpt7 0 => array('pipe', 'r'), // stdin
H A Dbug61019.phpt9 0 => array("pipe", "r"), // stdin is a pipe that the child will read from
H A Dbug64770.phpt7 0 => array('pipe', 'r'), // stdin
H A Dbug72853.phpt13 0 => array('pipe', 'r'), // stdin
H A Dbug78883.phpt23 // if the bug is not present, it will hang waiting for stdin,
H A Dproc_open_bug51800.phpt31 0 => array("pipe", "rb"), // stdin
H A Dproc_open_bug51800_right.phpt15 0 => array("pipe", "rb"), // stdin
H A Dproc_open_bug51800_right2.phpt15 0 => array("pipe", "rb"), // stdin
H A Dproc_open_bug60120.phpt2 Bug #60120 proc_open hangs with stdin/out with >2048 bytes
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);

Completed in 36 milliseconds

12