我在FTP上使用file_put_contents,它似乎只保存了一半的文件。我通过ajax(服务器完全接收)发布SVG,然后保存到外部服务器。该过程只需几秒钟,因此不会成为进程时间问题。还有其他人有这个吗?问候
$options = array( 'ftp' => array( 'overwrite' => true ) );
$svgSavePath = "ftp://{$user}:{$password}@{$host}/svgs/{$id}.svg";
$stream = stream_context_create( $options );
file_put_contents( $svgSavePath, $svg, 0, $stream );