大家晚安
有事想请教一下大家
厂商的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 );
}
我的目的 是想把 厂商某个资料夹的档案 复制到我指定的资料夹中
然后我再对档案做处理
我测试了一下 有连线成功 但是档案 却没复制过来
想请问 我哪一步骤出问题了吗