Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试从 php 脚本中的远程 sftp 服务器获取文件。我正在使用 libssh2 库,并且我已经能够 1)打开与 ssh 服务器的连接并 2)正确地进行身份验证。我在创建用于 ssh2_sftp* 函数和包装器的 sftp 资源时遇到了困难。以下行将 $sftp 保留为 NULL:
$stfp = ssh2_sftp($ftp_conn);
php错误日志显示没有错误。SSH 服务器日志显示成功登录、身份验证,并记录正在初始化的 sftp 子系统。关于下一步看哪里的任何想法?