【发布时间】:2017-05-23 07:37:51
【问题描述】:
我正在尝试通过 php 脚本下载文件,但不幸的是,使用此脚本时出现错误:
PHP 警告:ftp_connect(): php_network_getaddresses: getaddrinfo 失败:提供节点名或服务名,或在 /Users/apple/projects/asystem/download_dump.php 在第 15 行
我尝试把不同的FTP地址测试它,它工作正常
所以问题是 100% 在服务器地址...
// define some variables
$folder_path = "/Users/apple/projects/asystem";
$local_file = "auct_lots_full.xml.zip";
$server_file = "auct_lots_full.xml.zip";
//-- Connection Settings
$ftp_server = "ftp://xxxx_user:Eecohshxxxxxx@auctionsdata.xxxxx.com"; // Address of FTP server.
$ftp_user_name = "xxxxx_user"; // Username
$ftp_user_pass = "xxxx"; // Password
#$destination_file = "FILEPATH";
// 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);
?>
【问题讨论】:
-
您是否从主机 ping 给定域?
-
你是在 Windows 机器上运行这个吗?
-
如果我使用这个链接就可以了
-
我正在使用 MAC 操作系统
标签: php