我必须连接到moteng网站ftp。我试过下面的代码,但我没有连接。
$ftp_server="ftp://dropbox.moteng.com/";
$ftp_user_name="xxxx";
$ftp_pass="xxxx";
$conn_id = ftp_connect($ftp_server);
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_pass);
此处登录结果为空。
但是在浏览器中使用相同的登录详细信息。
请帮助完成此任务。感谢
答案 0 :(得分:4)
直接来自手册:
The FTP server address. This parameter shouldn't have any trailing slashes and shouldn't be prefixed with ftp://.
你犯了两个错误,有一个斜杠,并在其前面添加了ftp://