PHP 写入外部服务器上的文件

PHP write to file on external server

我正在尝试使用 php 写入外部服务器上的文件。我有 FTP 详细信息。 这是我的代码

$handle = fopen("ftp://USN:PASS@DOMAIN/FOLDER/FILE.HTML", "a");

fwrite($handle, "Some text");

fclose($handle);

执行后,我在浏览器中收到 "The connection was reset. The connection to the server was reset while the page was loading." 错误。 我做错了什么?

它在我的本地服务器上有效,所以这种方法是绝对可行的。我猜 000webhost 已设置

ini_set("allow_url_fopen ", 0);

在php.ini