大家晚安
有事想請教一下大家
廠商的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 );
}
我的目的 是想把 廠商某個資料夾的檔案 複製到我指定的資料夾中
然後我再對檔案做處理
我測試了一下 有連線成功 但是檔案 卻沒複製過來
想請問 我哪一步驟出問題了嗎