60,));$context = stream_context_create($opts);//$strData = file_get_con">
时间:2021-07-01 10:21:17 帮助过:10人阅读
array(
'method'=>"GET",
'timeout'=>60,
)
);
$context = stream_context_create($opts);
// $strData = file_get_contents("ssh2.sftp://{$resSFTP}/dfr508/WUN/ikea-logo.jpg", false, $context);
// file_put_contents($filename, $strData);
//2 也可以用copy()
if(!copy("ssh2.sftp://{$resSFTP}/dfr508/WUN/ikea-logo.jpg", $filename)) {
echo 'download failed';
}
//upload a File
//1
//file_put_contents("ssh2.sftp://{$resSFTP}/dfr508/WUN/456.jpg", 'c:/123.jpg');
//2
// if(!copy("c:/abc.jpg", "ssh2.sftp://{$resSFTP}/dfr508/WUN/789.jpg")) {
// echo 'upload failed';
// }
} else {
echo "Unable to authenticate on server";
}
?>