码迷,mamicode.com
首页 > Web开发 > 详细

php处理管道文件流

时间:2015-01-09 00:00:56      阅读:393      评论:0      收藏:0      [点我收藏+]

标签:

<?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处理文件流

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

php处理管道文件流

标签:

原文地址:http://www.cnblogs.com/lsmsky/p/4212077.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!