使用带有file_get_contents的FTP URL包装器时“无法打开流:操作失败”

问题描述 投票:-1回答:1

我想从FTP服务器回显一个XML文件。我有以下代码:

$contents = file_get_contents('ftp://'. urlencode('*myusername*') . ':'. urlencode('*mypassword*') . '@www.ms5awhosting.de/20180306_0000035.xml');

echo $contents;

但我收到以下警告:

警告:file_get_contents(ftp://[email protected]/20180306_0000035.xml):无法打开流:操作失败...

有谁知道我做错了什么?

php ftp
1个回答
-1
投票

导致“无法打开流:操作失败”的一个常见原因是URL中指定的错误FTP凭据。

© www.soinside.com 2019 - 2024. All rights reserved.