PHP Classes
elePHPant
Icontem

sftp file transfer using php: I want to find a php package that will perform secure FTP (sftp)

Recommend this page to a friend!
  All requests RSS feed  >  sftp file transfer using php  >  Request new recommendation  >  A request is featured when there is no good recommended package on the site when it is posted. Featured requests  >  No recommendations No recommendations  

sftp file transfer using php

Edit

by Bob Squires - 6 days ago (2018-11-24)

I want to find a php package that will perform secure FTP (sftp)

This request is clear and relevant.
This request is not clear or is not relevant.

0

I want to transfer files from my local computer to a unix-based remote ftp server that requires secure transfer.

Ask clarification

1 Recommendation

PHP FTP Class: Access FTP servers to transfer files

This recommendation solves the problem.
This recommendation does not solve the problem.

0

by Malik umer Farooq package author package author Reputation 50 - 3 hours ago (2018-12-01) Comment

You can use this class to access sftp

like that

//creating the connection $ftp = new FTP('sftp.myserver.com', 'username', 'password',true);

//then upload files //$ftp->put(array $files , $folder); //Default $folder is public_html $ftp->put(['login.php','signup.php'],'htdocs');


Recommend package
: 
: