我正在尝试通过FTP从FTP将文件流/管道传输到用户的浏览器。也就是说,我试图在FTP服务器上打印文件的内容。
这是我到目前为止所做的:
public function echo_contents() {
$file = fopen('php://output', 'w+');
if(!$file) {
throw new Exception('Unable to open output');
}
try {
$this->ftp->get($this->path, $file);
} catch(Exception $e) {
fclose($file); // wtb finally
throw $e;
}
fclose($file);
}
$this->ftp->get
看起来像这样:
public function get($path, $stream) {
ftp_fget($this->ftp, $stream, $path, FTP_BINARY); // Line 200
}
通过这种方法,我只能将小文件发送到用户的浏览器。对于较大的文件,没有任何内容被打印,我得到一个致命错误(可从Apache日志中读取):
PHP致命错误:第200行的/xxx/ftpconnection.php中允许的内存大小为16777216字节(尝试分配15994881字节)
我尝试将php://output
替换为php://stdout
但未成功(似乎没有任何内容发送到浏览器)。
如何在将数据同时发送到浏览器的同时从FTP有效下载?
注意:我不想使用file_get_contents('ftp://user:pass@host:port/path/to/file');
或类似内容。
答案 0 :(得分:8)
找到解决方案!
创建一个套接字对(匿名管道?)。使用非阻塞ftp_nb_fget
函数写入管道的一端,echo
写入管道的另一端。
经过测试快速(在100Mbps连接上轻松达到10MB / s),因此没有太多的I / O开销。
请务必清除所有输出缓冲区。框架通常会缓冲输出。
public function echo_contents() {
/* FTP writes to [0]. Data passed through from [1]. */
$sockets = stream_socket_pair(STREAM_PF_UNIX, STREAM_SOCK_STREAM, STREAM_IPPROTO_IP);
if($sockets === FALSE) {
throw new Exception('Unable to create socket pair');
}
stream_set_write_buffer($sockets[0], 0);
stream_set_timeout($sockets[1], 0);
try {
// $this->ftp is an FtpConnection
$get = $this->ftp->get_non_blocking($this->path, $sockets[0]);
while(!$get->is_finished()) {
$contents = stream_get_contents($sockets[1]);
if($contents !== false) {
echo $contents;
flush();
}
$get->resume();
}
$contents = stream_get_contents($sockets[1]);
if($contents !== false) {
echo $contents;
flush();
}
} catch(Exception $e) {
fclose($sockets[0]); // wtb finally
fclose($sockets[1]);
throw $e;
}
fclose($sockets[0]);
fclose($sockets[1]);
}
// class FtpConnection
public function get_non_blocking($path, $stream) {
// $this->ftp is the FTP resource returned by ftp_connect
return new FtpNonBlockingRequest($this->ftp, $path, $stream);
}
/* TODO Error handling. */
class FtpNonBlockingRequest {
protected $ftp = NULL;
protected $status = NULL;
public function __construct($ftp, $path, $stream) {
$this->ftp = $ftp;
$this->status = ftp_nb_fget($this->ftp, $stream, $path, FTP_BINARY);
}
public function is_finished() {
return $this->status !== FTP_MOREDATA;
}
public function resume() {
if($this->is_finished()) {
throw BadMethodCallException('Cannot continue download; already finished');
}
$this->status = ftp_nb_continue($this->ftp);
}
}
答案 1 :(得分:5)
尝试:
@readfile('ftp://username:password@host/path/file'));
我发现有很多文件操作,让底层操作系统功能为您处理它是值得的。
答案 2 :(得分:1)
听起来你需要关闭该页面的输出缓冲,否则PHP会尝试将它放在所有内存中。
一种简单的方法就是:
while (ob_end_clean()) {
; # do nothing
}
将它放在你的电话前面 - > get(),我认为这样可以解决你的问题。
答案 3 :(得分:1)
我知道这已经过时了,但是有些人可能仍然觉得它很有用。
我在Windows环境中尝试过您的解决方案,它几乎完美地工作:
$conn_id = ftp_connect($host);
ftp_login($conn_id, $user, $pass) or die();
$sockets = stream_socket_pair(STREAM_PF_INET, STREAM_SOCK_STREAM,
STREAM_IPPROTO_IP) or die();
stream_set_write_buffer($sockets[0], 0);
stream_set_timeout($sockets[1], 0);
set_time_limit(0);
$status = ftp_nb_fget($conn_id, $sockets[0], $filename, FTP_BINARY);
while ($status === FTP_MOREDATA) {
echo stream_get_contents($sockets[1]);
flush();
$status = ftp_nb_continue($conn_id);
}
echo stream_get_contents($sockets[1]);
flush();
fclose($sockets[0]);
fclose($sockets[1]);
我使用STREAM_PF_INET
而不是STREAM_PF_UNIX
因为Windows,它运行完美......直到最后一个块,false
没有明显的原因,我不能明白为什么。所以输出错过了最后一部分。
所以我决定使用另一种方法:
$ctx = stream_context_create();
stream_context_set_params($ctx, array('notification' =>
function($code, $sev, $message, $msgcode, $bytes, $length) {
switch ($code) {
case STREAM_NOTIFY_CONNECT:
// Connection estabilished
break;
case STREAM_NOTIFY_FILE_SIZE_IS:
// Getting file size
break;
case STREAM_NOTIFY_PROGRESS:
// Some bytes were transferred
break;
default: break;
}
}));
@readfile("ftp://$user:$pass@$host/$filename", false, $ctx);
这与PHP 5.4.5的魅力相似。糟糕的是,您无法捕获传输的数据,只能捕获块大小。
答案 4 :(得分:0)
(我自己从未遇到过这个问题,所以这只是一个疯狂的猜测;但是,也许......)
也许改变你写的“文件”的输出缓冲区的大小可能有帮助吗?
为此,请参阅stream_set_write_buffer
。
例如:
$fp = fopen('php://output', 'w+');
stream_set_write_buffer($fp, 0);
有了这个,你的代码应该使用非缓冲流 - 这可能会有所帮助......
答案 5 :(得分:0)
快速搜索提出了php的flush。
这篇文章可能也很有趣:http://www.net2ftp.org/forums/viewtopic.php?id=3774