码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2017-03-03 19:18:42      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:技术分享   connect   bin   分享   locking   use   需要   nts   扩展   

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扩展的安装

标签:技术分享   connect   bin   分享   locking   use   需要   nts   扩展   

原文地址:http://www.cnblogs.com/renxing123/p/6497962.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!