gpt4 book ai didi

php - 使用 php 通过 ftp 下载文件

转载 作者:行者123 更新时间:2023-12-02 23:48:10 25 4
gpt4 key购买 nike

我正在使用 ftp_put() 从另一台服务器下载文件。一切(连接等)工作正常,但无法下载。

    ftp_chdir($conn_id, $destination_file); 
$upload = ftp_put($conn_id, $name, $source_file, FTP_BINARY);

上面是我的代码及其给出的错误“无法将目录更改为”...当我在没有“ftp_chdir”的情况下使用ftp_put时,它不起作用,所以我使用了ftp_chdir。但仍然不工作。 $destination_file 等于路径,$name 等于文件。请告诉我我做错了什么?p.s 甚至 $upload 也返回 true。但我在任何地方都找不到该文件。

最佳答案

使用ftp_get而不是ftp_put

<?php

// define some variables
$local_file = 'local.zip';
$server_file = 'server.zip';

// set up basic connection
$conn_id = ftp_connect($ftp_server);

// login with username and password
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);

// try to download $server_file and save to $local_file
if (ftp_get($conn_id, $local_file, $server_file, FTP_BINARY)) {
echo "Successfully written to $local_file\n";
} else {
echo "There was a problem\n";
}

// close the connection
ftp_close($conn_id);

?>

ftp_get from PHP manual

关于php - 使用 php 通过 ftp 下载文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9964798/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com