php:@fopen在localhost中有效,但在实时服务器中无效

时间:2018-09-19 05:41:20

标签: php sftp fopen

我正在尝试获取这样的远程文件:

$host = 'sftp.hostname.com';
$username = 'user';
$password = '*****';
$port = '22';
$remote_file = 'TOB-20180919.text';
$connection = @ssh2_connect($host, $port);
if ($connection != false) {
    $login = @ssh2_auth_password($connection, $username, $password);
    if ((bool) $login) {
        $sftp = @ssh2_sftp($connection);
        if ($sftp != false) {
            $stream = @fopen("ssh2.sftp://$sftp" . "/" . "$remote_file", 'w');
            var_dump($stream);exit;
        }
    }
}

$stream在我的实时服务器上打印false,在我的本地主机上打印true。 我现在该怎么办?

1 个答案:

答案 0 :(得分:0)

我遇到了同样的问题,因此我使用以下代码解决了此类问题。请使用此代码进行检查。

放入

$stream = @fopen("ssh2.sftp://".(int)$sftp."/".$remote_file, 'w');

代替

$stream = @fopen("ssh2.sftp://$sftp" . "/" . "$remote_file", 'w');