首页 > 代码库 > php处理管道文件流

php处理管道文件流

<?php#!/usr/local/bin/php -qfunction read(){	$fp =  fopen("php://stdin", "r");	while(!feof($fp)) {		$tmp = fgets($fp, 255);		$input = $input. $tmp;	}			fclose($fp);	return $input;}$input = read();echo $input;

php处理文件流

cat a.txt |/usr/local/bin/php in.php 

php处理管道文件流