vote up 5 vote down star

I know PHP is usually used for web development, where there is no standard input, but PHP claims to be usable as a general-purpose scripting language, if you do follow it's funky web-based conventions. I know that PHP prints to stdout (or whatever you want to call it) with print and echo, which is simple enough, but I'm wondering how a PHP script might get input from stdin (specifically with fgetc(), but any input function is good), or is this even possible?

flag

3 Answers

vote up 10 vote down check

It is possible to read the stdin by creating a file handle to php://stdin and then read from it with fgets() for a line for example (or, as you already stated, fgetc() for a single character):

<?php
$f = fopen('php://stdin', 'r');
while ($line = fgets($f))
   echo $line;
?>
link|flag
1  
You could also use the predefined constant STDIN instead of opening it manually: $line = fgets(STDIN); – gix Feb 16 at 22:26
STDIN did not work for me, but 'php://stdin', 'r' did. Using PHP 5.2.9-2 (cli) (built: Apr 9 2009 08:23:19) on Vista. – Eric J. Oct 26 at 20:09
vote up 4 vote down

IIRC, you may also use the following:

$in = fopen(STDIN, "r");
$out = fopen(STDOUT, "w");

Technically the same, but a little cleaner syntax-wise.

link|flag
vote up 3 vote down

You can use fopen() on php://stdin:

$f = fopen('php://stdin', 'r');
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.