php處理管道文件流

<?php
#!/usr/local/bin/php -q
function 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處理文件流php

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

相關文章
相關標籤/搜索