ssh2上的opendir永远不会停止

时间:2017-03-20 14:20:07

标签: php php-7 opendir readdir libssh2

我需要通过ssh从远程服务器的根目录中获取一些文件,本地机器使用php7。我制作了这个剧本:

<?php
$strServer = "my-server.com";
$strServerPort = "22";
$strServerUsername = "my.username";
$strServerPassword = "my-password";
$resConnection = ssh2_connect($strServer, $strServerPort);
if(ssh2_auth_password($resConnection, $strServerUsername, $strServerPassword)) {
    $files = array();
    $resSFTP = ssh2_sftp($resConnection);
    $dirHandle = opendir("ssh2.sftp://" . intval($resSFTP) . "/");
    while ($dirHandle && ($file = readdir($dirHandle)) !== false) {
        if ($file == "." || $file == "..") {
            continue;
        }
        $strData = file_get_contents("ssh2.sftp://" . intval($resSFTP) . "/" . $file);
        file_put_contents('/path/to/dir/' . $file, $strData);
    }
    ssh2_exec($resConnection, 'exit');
    unset($resConnection);
}

die;

它有效,即文件被提取,但脚本永远不会停止 如果我知道要获取的文件的名称,那么脚本将是:

if(ssh2_auth_password($resConnection, $strServerUsername, $strServerPassword)) {
    $files = array();
    $resSFTP = ssh2_sftp($resConnection);
    $file = 'name_of_the_file.xlsx';
    $strData = file_get_contents("ssh2.sftp://" . intval($resSFTP) . "/" . $file);
    file_put_contents('/path/to/dir/' . $file, $strData);
}

然后文件被提取,脚本在执行结束时停止。

我不能使用phpseclib,因为它需要作曲家,我不能在语言环境机器上使用它。

如果脚本无限运行,我可以对opendir()readdir()做些什么?

1 个答案:

答案 0 :(得分:2)

尝试在file_put_contents

之后破解

例如:

if (file_put_contents('/path/to/dir/' . $file, $strData) !== false) {
    break;
}

或作为最佳方法,您可以在放入数据后直接使用closedir

do {
    if ($file == "." || $file == "..") {
        continue;
    }
    $strData = file_get_contents("ssh2.sftp://" . intval($resSFTP) . "/" . $file);
    if (file_put_contents('/path/to/dir/' . $file, $strData)) {
        break;
    }
} while ($dirHandle && ($file = readdir($dirHandle)) !== false);

closedir($dirHandle);