我想在php中"实时"打印程序的输出(缓冲区并不重要)。这个过程需要很长时间,尽早获得(部分)数据将非常有帮助。
通常我使用普通的passthru()但这是在CakePHP中完成的它不会输出任何东西,直到我这样做:
$this->response->file($file, array('download' => true));
return $this->response;
如果我只是删除这些行和交换exec()与passthru()我得到一个MissingViewException
Error: [MissingViewException] View file "Songs/download.ctp" is missing.
如果我这样做
$this->response=$out; #$out being the output of exec()
return $this->response;
我得到这个
2015-08-10 01:18:06 Error: Fatal Error (1): Call to a member function body() on string in [/storage/www/sonerezh/lib/Cake/Controller/Controller.php, line 960]
2015-08-10 01:18:06 Error: [InternalErrorException] Internal Server Error
Request URL: /songs/download/2307
Stack Trace:
#0 /storage/www/sonerezh/lib/Cake/Error/ErrorHandler.php(213): ErrorHandler::handleFatalError(1, 'Call to a membe...', '/storage/www/so...', 960)
#1 [internal function]: ErrorHandler::handleError(1, 'Call to a membe...', '/storage/www/so...', 960, Array)
#2 /storage/www/sonerezh/lib/Cake/Core/App.php(931): call_user_func('ErrorHandler::h...', 1, 'Call to a membe...', '/storage/www/so...', 960, Array)
#3 /storage/www/sonerezh/lib/Cake/Core/App.php(904): App::_checkFatalError()
#4 [internal function]: App::shutdown()
#5 {main}
我能做什么?
你可以试试这个(未测试):
$this->response->body(function () {
passthru ('./program') ;
}) ;
return $this->response ;
更多信息请点击此处。
注意:我假设你正在使用CakePHP 3,因为CakeResponse::file
不存在于CakePHP 2.