定制 cullylarson/ssh-copy 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

cullylarson/ssh-copy

最新稳定版本:v1.0.2

Composer 安装命令:

composer require cullylarson/ssh-copy

包简介

A library for performing remote copies. Copy to/from local, to/from remote, and even between two remote machines.

README 文档

README

A library for performing remote copies. Copy to/from local, to/from remote, and even between two remote machines.

Install

curl -s http://getcomposer.org/installer | php
php composer.phar require cullylarson/ssh-copy

Construct

You'll do everything with an instance of Cully\Ssh\Copier. Its constructor takes three parameters:

  1. $sshSource (resource|null) (optional, default:null) An SSH connection resource. If null, will assume the source is the local machine. If its a resource, will assume the source is a remote machine.

  2. $sshDestination (resource|null) (optional, default:null) An SSH connection resource. If null, will assume the destination is the local machine. If its a resource, will assume the destination is a remote machine.

  3. $localTmp (string|null) (optional, default:null) If copying between two remote machines, the copy will first transfer the files to from the remote source, to the local machine, and then to the remote destination. So, you need to provide a temporary folder to house the files locally.

copy

The Cully\Ssh\Copier::copy function takes two arguments:

  1. $sourceFilepath (string|array) (required) The path to the file that you want to copy from the source machine. Instead of passing a single path, you can pass an array of paths to files you want to copy. If an array is provided, the $destFilepath parameter must also be an array of the same length.

  2. $destFilepath (string|array) (required) The path on the destination machine, where you want the file copied. Instead of passing a single path, you can pass an array of paths to files you want to copy. If an array is provided, the $sourceFilepath parameter must also be an array of the same length.

Returns: boolean True on success, false on fail.

NOTE: Currently the copy function DOES NOT create parent folders. The folders must already exist. Maybe something for a future release.

copyAssoc

The Cully\Ssh\Copier::copyAssoc function is similar to copy, except it takes one argument:

  1. $sourceAndDest (array) (required) An associative array where keys are source file paths, and values are destination file paths.

Returns: boolean True on success, false on fail.

Examples

Setup SSH Connections

<?php

$sourceSsh = ssh2_connect("localhost", 22, array('hostkey'=>'ssh-rsa'));
ssh2_auth_agent($sourceSsh, "my_username");

$destSsh = ssh2_connect("localhost", 22, array('hostkey'=>'ssh-rsa'));
ssh2_auth_agent($destSsh, "my_username");

NOTE: If you're using RSA for the examples below, and you get an auth error, you might need to run this command:

$ eval `ssh-agent -s` && ssh-add

Copy / Local to Local

<?php

$copier = new Cully\Ssh\Copier();
$copier->copy("path/to/source", "path/to/dest");

Copy / Local to Remote

<?php

$copier = new Cully\Ssh\Copier(null, $destSsh);
$copier->copy("path/to/source/on/local", "path/to/dest/on/remote");

Copy / Remote to Local

<?php

$copier = new Cully\Ssh\Copier($sourceSsh, null);
$copier->copy("path/to/source/on/remote", "path/to/dest/on/local");

Copy / Remote to Remote

<?php

$copier = new Cully\Ssh\Copier($sourceSsh, $destSsh, "/local/tmp/folder");
$copier->copy("path/on/remote/source", "path/on/remote/dest");

Copy / Remote to Remote with Multiple Files

<?php

$copier = new Cully\Ssh\Copier($sourceSsh, $destSsh, "/local/tmp/folder");
$copier->copy(
    [ "path/on/remote/source/file1", "path/on/remote/source/file2" ],
    [ "path/on/remote/dest/file1", "path/on/remote/dest/file2" ]
);

Copy / Remote to Remote with Multiple Files using copyAssoc

<?php

$copier = new Cully\Ssh\Copier($sourceSsh, $destSsh, "/local/tmp/folder");
$copier->copyAssoc([
    "path/on/remote/source/file1" => "path/on/remote/dest/file1",
    "path/on/remote/source/file2" => "path/on/remote/dest/file2"
]);

统计信息

  • 总下载量: 72
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 2
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-09-12

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固