duanlaiquan8174 2015-12-22 14:13
浏览 936

Laravel使用ftp传输文件

I have a file on one server which is inside storage folder. I would like to transfer this file to an external server via ftp.

I've tried using https://github.com/GrahamCampbell/Laravel-Flysystem

But the issue is that it only allows me to update and read the file. So if lets say test.txt does not exist, it will return Undefined offset: 8 which I traced down to being file not found

This is the function that is breaking:

$fileName = "test2.txt"
$filePath = "path/to/file/to/transfer/test.txt" 
$this->flysystem->connection('ftp')->write($fileName,$filePath);

File test2.txt does not exist on server 2

This functions allow me to update the file

$this->flysystem->connection('ftp')->put('test.txt','test');

File test.txt exist on server 2

Also I'm trying to transfer .zip files but testing on txt

Thanks

  • 写回答

1条回答 默认 最新

  • douzhanglu4591 2015-12-22 15:14
    关注

    try this..

    $stream = fopen("path/to/file/to/transfer/test.txt" , 'r+');
    $this->flysystem->connection('ftp')->writeStream('uploads/test.txt', $stream);
    fclose($stream);
    
    评论

报告相同问题?

悬赏问题

  • ¥15 关于#hadoop#的问题
  • ¥15 (标签-Python|关键词-socket)
  • ¥15 keil里为什么main.c定义的函数在it.c调用不了
  • ¥50 切换TabTip键盘的输入法
  • ¥15 可否在不同线程中调用封装数据库操作的类
  • ¥15 微带串馈天线阵列每个阵元宽度计算
  • ¥15 keil的map文件中Image component sizes各项意思
  • ¥20 求个正点原子stm32f407开发版的贪吃蛇游戏
  • ¥15 划分vlan后,链路不通了?
  • ¥20 求各位懂行的人,注册表能不能看到usb使用得具体信息,干了什么,传输了什么数据