doushi9474 2014-09-22 16:19
浏览 58
已采纳

如何使用php检查ssh服务器中的文件是否为空

I am connecting to a SSH server using PHP and there is file called difference in the server. I want to check whether it is empty or not and echo something depending on the result.

I am aware of the function :

file_get_contents("./difference")

But this will work in in the localhost directory. I want to check in the SSH server. How Should i proceed...?

PS : I use ssh2 to connect to ssh server

  • 写回答

2条回答 默认 最新

  • dqp99585 2014-09-22 17:00
    关注

    you can use this ways :

    1) use ssh2.sftp protocol :

    $data  = file_get_contents('ssh2.sftp://user:pass@youraddress.com:22/path/to/one/file');
    

    2) use ssh2

    $ssh2_conn = ssh2_connect('youraddress.com', 22);
    ssh2_auth_password($ssh2_conn, 'username', 'password');
    $sftp_conn = ssh2_sftp($ssh2_conn);
    $file_stream = fopen("ssh2.sftp://$sftp_conn/path/to/one/file", 'r');
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥20 全书网Java爬取数据
  • ¥15 SAP HANA SQL Script 。SUM OVER 怎么加where
  • ¥15 怎么获取红包封面的原始链接,并且获取红包封面序列号
  • ¥100 微信小程序跑脚本授权的问题
  • ¥60 为什么使用python对地震数据进行umap降维后,数据成图会出现不连续的现象
  • ¥100 房产抖音小程序苹果搜不到安卓可以付费悬赏
  • ¥15 STM32串口接收问题
  • ¥15 腾讯IOA系统怎么在文件夹里修改办公网络的连接
  • ¥15 filenotfounderror:文件是存在的,权限也给了,但还一直报错
  • ¥15 安卓qpython向ksweb服务器post文件失败