【发布时间】:2017-09-29 16:45:34
【问题描述】:
我想从远程 NAS 服务器下载文件,我无法强制下载到客户端。我正在使用这个功能:
public function download(){
// Set IP and port
define("FTP_CONNECT_IP", "xxx");
define("CONNECT_PORT", "21");
// Set username and password
define("FTP_LOGIN_USER", "username");
define("FTP_LOGIN_PASS", "password");
$remote_file = 'ftp://' . FTP_LOGIN_USER . ':' . FTP_LOGIN_PASS . '@' . FTP_CONNECT_IP . '/' .'PathToFile.avi';
$response = $this->response->withFile($remote_file,['download' => true]);
return $response;
}
它开始读取某些内容,但浏览器从不要求我下载。请问怎么了?
【问题讨论】:
标签: php cakephp download ftp cakephp-3.x