file_put_contents半个文件

时间:2015-03-05 16:36:06

标签: php ftp

我在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 );

0 个答案:

没有答案