file_get_contents & file_put_contents的 FTP 超时



我正在尝试使用

在ftp服务器上附加文件
file_put_contents("ftp://".$ftp_user_name.":".$ftp_user_pass."@".$ftp_server."/".$destFile, $outputStr, FILE_APPEND)

这工作得很好,但是在失败时生成超时需要花费很多时间。我想设置FTP附加文件的超时时间。我看了看stream_context_create(),它支持FTP协议,但找不到连接超时的选项,就像它对HTTP协议一样。还有什么方法可以为file_put_contents或file_get_contents

设置超时时间?

也许这会有帮助?

ini_set("default_socket_timeout", $seconds);

相关内容

  • 没有找到相关文章

最新更新