在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扩展的安装的主要内容,如果未能解决你的问题,请参考以下文章