在OS X系统中php访问sftp时需要ssh2扩展的安装

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在OS X系统中php访问sftp时需要ssh2扩展的安装相关的知识,希望对你有一定的参考价值。

php -v

技术分享

 

brew install homebrew/php/php55-ssh2

 技术分享

 

【实现方式】

<?php
$connection = ssh2_connect(‘192.168.0.145‘, 22);
ssh2_auth_password($connection, ‘username‘, ‘password‘);

$stream = ssh2_exec($connection, ‘/usr/local/bin/php -i‘);
stream_set_blocking( $stream, true );
echo (stream_get_contents($stream));

$stream = ssh2_exec($connection, ‘ls‘);
stream_set_blocking( $stream, true );
echo (stream_get_contents($stream));

?>

 

 

 

以上是关于在OS X系统中php访问sftp时需要ssh2扩展的安装的主要内容,如果未能解决你的问题,请参考以下文章

ssh2到sftp服务器的连接在laravel中不起作用

Centos6 下PHP的SSH2扩展安装

基于LNMP环境的ssh2扩展

使用带有 ssh2.sftp:// URI 的 PHP fopen 从 SFTP 服务器下载的文件为空

PHP-sftp文件上传

如何使用 PHP 进行 SFTP?