[請益] ftp implicit tls/ssl 連線

看板PHP作者 (小心一點)時間6年前 (2018/03/25 18:30), 編輯推噓0(004)
留言4則, 3人參與, 6年前最新討論串1/1
大家晚安 有事想請教一下大家 廠商的ftp連線方式 是用 implicit tls/ssl 我在網路上 找到了 ftp-implicit-ssl-tls.php 來源: https://gist.github.com/nalindaDJ/63dea19f07dcfbbf3d33 然後以下是我的 code $user = 'xxx'; $passwd = 'xxx'; $url = 'xxx'; $port = '8821' $ftpconn = new FTP_Implicit_SSL($user,$passwd,$url,$port); if($ftpconn) { $date = date('Ymd'); $file_xml = 'xxxxxx'.$date.'.xml'; $remote_url = '/F01/'; $local_url = 'F01/'; $ftpconn->download( $remote_url.$file_xml , $local_url.$file_xml ); } 我的目的 是想把 廠商某個資料夾的檔案 複製到我指定的資料夾中 然後我再對檔案做處理 我測試了一下 有連線成功 但是檔案 卻沒複製過來 想請問 我哪一步驟出問題了嗎 -- ※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 49.159.67.88 ※ 文章網址: https://www.ptt.cc/bbs/PHP/M.1521973829.A.475.html

03/25 23:28, 6年前 , 1F
不熟 但在想是不是伺服器允許最大檔案大小設定的問題
03/25 23:28, 1F

03/26 10:05, 6年前 , 2F
檔案很小 可能連10K都不到..
03/26 10:05, 2F

04/02 13:54, 6年前 , 3F
php處理ftps好像問題很多 最後做法是安裝lftp 下shell的
04/02 13:54, 3F

04/02 13:55, 6年前 , 4F
的方式來把檔案上傳
04/02 13:55, 4F
文章代碼(AID): #1Qjtf5Hr (PHP)
文章代碼(AID): #1Qjtf5Hr (PHP)