The following code shows how to test for input on STDIN. In this case, we were looking for CSV data, so we use fgetcsv to read STDIN, if it creates an array, we assume CVS input on STDIN, if no array was created, we assume there's no input from STDIN, and look, later, to an argument with a CSV file name.
Note, without the stream_set_blocking() call, fgetcsv() hangs on STDIN, awaiting input from the user, which isn't useful as we're looking for a piped file. If it isn't here already, it isn't going to be.
<?php
stream_set_blocking(STDIN, 0);
$csv_ar = fgetcsv(STDIN);
if (is_array($csv_ar)){
print "CVS on STDIN\n";
} else {
print "Look to ARGV for CSV file name.\n";
}
?>
入出力ストリーム
CLI SAPI には入出力ストリーム用の定数がいくつか定義されており、 これらを使うとコマンドライン用のプログラミングが多少簡単になります。
| 定数 | 説明 |
|---|---|
STDIN |
stdin へのオープン済みのストリーム。 これにより、以下のようにオープンする必要がなくなります。
<?php
<?php |
STDOUT |
stdout へのオープン済みのストリーム。 これにより、以下のようにオープンする必要がなくなります。
<?php |
STDERR |
stderr へのオープン済みのストリーム。 これにより、以下のようにオープンする必要がなくなります。
<?php |
上記のように、stderr のようなストリームを自分で オープンする必要はなく、以下のようにストリームリソースの代わりに 定数を使用するだけでかまいません。
php -r 'fwrite(STDERR, "stderr\n");'
注意:
これらの定数は、PHP スクリプトを stdin から読み込んだ場合は使用できません。
ecrist at secure-computing dot net ¶
1 year ago
Aurelien Marchand ¶
2 years ago
Please remember in multi-process applications (which are best suited under CLI), that I/O operations often will BLOCK signals from being processed.
For instance, if you have a parent waiting on fread(STDIN), it won't handle SIGCHLD, even if you defined a signal handler for it, until after the call to fread has returned.
Your solution in this case is to wait on stream_select() to find out whether reading will block. Waiting on stream_select(), critically, does NOT BLOCK signals from being processed.
Aurelien
James Zhu ¶
2 years ago
Example:
<?php
function ReadStdin($prompt, $valid_inputs, $default = '') {
while(!isset($input) || (is_array($valid_inputs) && !in_array($input, $valid_inputs)) || ($valid_inputs == 'is_file' && !is_file($input))) {
echo $prompt;
$input = strtolower(trim(fgets(STDIN)));
if(empty($input) && !empty($default)) {
$input = $default;
}
}
return $input;
}
// you can input <Enter> or 1, 2, 3
$choice = ReadStdin('Please choose your answer or press Enter to continue: ', array('', '1', '2', '3'));
// check input is valid file name, use /var/path for input nothing
$file = ReadStdin('Please input the file name(/var/path):', 'is_file', '/var/path');
?>
you can add more functions if you want.
