91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

php fread buffer問題

發布時間:2020-07-10 01:19:33 來源:網絡 閱讀:15056 作者:shijiaoliang 欄目:web開發

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("ssh3_connect"))
    die('Function ssh3_connect not found, you cannot use ssh3 here');if (!$connection = ssh3_connect($host, $port))
    die('Unable to connect');if (!ssh3_auth_password($connection, $username, $password))
    die('Unable to authenticate.');if (!$stream = ssh3_sftp($connection))
    die('Unable to create a stream.');if (!$dir = opendir("ssh3.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("ssh3.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("ssh3.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(!ssh3_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("ssh3.sftp://{$stream}{$remoteDir}")


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

德江县| 永年县| 太康县| 太湖县| 漾濞| 大英县| 东明县| 高邑县| 玉树县| 将乐县| 图木舒克市| 安义县| 丰都县| 彭阳县| 玉环县| 来凤县| 江油市| 象州县| 长寿区| 北流市| 神农架林区| 荣昌县| 襄樊市| 明溪县| 沙河市| 平塘县| 浪卡子县| 贵定县| 无棣县| 南充市| 株洲市| 石台县| 昌江| 荆州市| 新河县| 宜章县| 衡水市| 恩平市| 彩票| 平潭县| 泸州市|