为了账号安全,请及时绑定邮箱和手机立即绑定

php fread buffer问题

标签:
PHP

Here is a small code on how to read the folder and download all its files:

<?php$host = 'localhost';$port = 22;$username = 'username';$password = 'password';$remoteDir = '/must/be/the/complete/folder/path';$localDir = '/can/be/the/relative/or/absolute/local/path';if (!function_exists("ssh2_connect"))    die('Function ssh2_connect not found, you cannot use ssh2 here');if (!$connection = ssh2_connect($host, $port))    die('Unable to connect');if (!ssh2_auth_password($connection, $username, $password))    die('Unable to authenticate.');if (!$stream = ssh2_sftp($connection))    die('Unable to create a stream.');if (!$dir = opendir("ssh2.sftp://{$stream}{$remoteDir}"))    die('Could not open the directory');$files = array();while (false !== ($file = readdir($dir))){    if ($file == "." || $file == "..")        continue;    $files[] = $file;}foreach ($files as $file){    echo "Copying file: $file\n";    if (!$remote = @fopen("ssh2.sftp://{$stream}/{$remoteDir}{$file}", 'r'))    {        echo "Unable to open remote file: $file\n";        continue;    }    if (!$local = @fopen($localDir . $file, 'w'))    {        echo "Unable to create local file: $file\n";        continue;    }    $read = 0;    $filesize = filesize("ssh2.sftp://{$stream}/{$remoteDir}{$file}");    while ($read < $filesize && ($buffer = fread($remote, $filesize - $read)))    {        $read += strlen($buffer);        if (fwrite($local, $buffer) === FALSE)        {            echo "Unable to write to local file: $file\n";            break;        }    }    fclose($local);    fclose($remote);}

You can also resume this code to (it will not copy directories):

while (false !== ($file = readdir($dirHandle))){    if ($file == "." || $file == "..")        continue;    echo "Copying file: $file\n";    if(!ssh2_scp_recv($connection, $remoteDir . $file, $localDir . $file))        echo "Could not download: ", $remoteDir, $file, "\n";}

If you do not use the full path on the remote folder it will not work:

opendir("ssh2.sftp://{$stream}{$remoteDir}")


点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消