gpt4 book ai didi

php - 用PHP从ftp服务器下载文件

转载 作者:行者123 更新时间:2023-12-03 18:42:49 24 4
gpt4 key购买 nike

我在 php 代码中使用以下格式从 ftp 服务器下载文件。

file_put_contents(
$filePath.$fileName, file_get_contents(
ftp://username:password@server_name/folder_name/xyz#123.csv.zip
)
);

我收到 550 错误,因为文件名包含“#”。如何避免错误。另外,在 FTP 上执行不同操作的最佳 PHP 类是什么?

最佳答案

用这个

<?php

// define some variables
$local_file = 'filename.jpg';
$server_file = 'filename.jpg';
$ftp_server="www.abc.com";
$ftp_user_name="username";
$ftp_user_pass="password";

$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);

?>

关于php - 用PHP从ftp服务器下载文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7793170/

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