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?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
|
It is possible to read the
|
||||
|
Reading from STDIN is recommended way
|
|||
|
|
|
IIRC, you may also use the following:
Technically the same, but a little cleaner syntax-wise. |
|||||
|
|
To avoid having to mess around with filehandles, use
(If you're reading a truly huge amount of data from |
|||
|
|