If you're on any UNIX:

<?

$fp = fopen('/dev/stdin','r');

  if($fp)
  {
    while(!feof($fp))
    {
      $line = trim(fgets($fp,4096));

      echo $line."\n";
    }
  }

?>

On Tuesday, May 27, 2003, at 06:17 PM, Marco Weber wrote:

hi,

i've a simple question:

how can i read the stuff that got piped ("|") to the php-script?

i.e. "ls -l | /home/myuser/phpscript.php"



thanks in advance for any help



Marco Weber




-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php


--
Joe Stump - [EMAIL PROTECTED]
http://www.jerum.com
"Software never has bugs. It just develops random features."


-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to