假设我有以下代码:
$file="http://example.com/path/to/file.zip";
$in = fopen($file, "r");
var_dump($in); // result - resource(8) of type (stream)
$put = ftp_fput($ftp->getConnectionId(), $file, $in, FTP_BINARY);
var_dump($put); // result - bool(false)
我收到以下错误:
Warning: ftp_fput(): http://example.com/path/to/file.zip: No such file or directory in /var/www/inc/application.php
连接建立正确,因为我可以更改目录和读取文件,但是当我想像上面那样上传文件时出现问题。我究竟做错了什么?提前感谢您的帮助。