通过 sftp php 连接到服务器
我们如何通过 sftp 连接到远程服务器来验证 php 中的登录详细信息是否有效...
我正在使用 apache 服务器...我的用途是检查用户输入的登录详细信息是否正确。
how do we connect to a remote server via sftp to verify if the login details are valid in php...
i'm using apache server... my use is to check whether the login details entered by user is correct or not.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
你安装了apache服务器吗?例如:xampp?
如果这样做,那么您就已经使用了 FTP 功能:
在基本的 Shell FTP 连接中,您必须定义文件或文件夹的绝对路径。
Do you have an apache server installed? for example: xampp?
If you do then you have use the FTP function:
That the basic Shell FTP connection, you must define absolute path's to file's or folders.
使用纯 PHP SFTP 客户端 phpseclib 可能会让您更轻松。这是一个例子:
正如大家所推荐的那样,libssh2 的问题在于它的部署不是很广泛,它的 API 并不是最可靠的,它不可靠,支持很差,等等。
You might have an easier time using phpseclib, a pure PHP SFTP client. Here's an example:
The problem with libssh2, as everyone's recommending, is that it's not very widely deployed, it's API isn't exactly the most reliable, it's unreliable, poorly supported, etc.
这会有帮助吗?
will this help?
我根据多个建议形成了一个小库。我推荐
GitHub 上的 idct sftp 客户端
I formed a small lib out of multiple suggestions. I encour
idct sftp client on GitHub