pwnlabs/ftp-client
Composer 安装命令:
composer require pwnlabs/ftp-client
包简介
A simple wrapper client lbrary to connect to FTP Servers, and do simple operations.
README 文档
README
A simple wrapper client lbrary to connect to FTP Servers, and do simple operations.
Example usage
$ftpClient = new \PwnLabs\FtpClient\FtpClient(
$host,
$username,
$password
);
$ftpClient->login();
$ftpClient->setPassiveMode(true);
$ftpClient->changeDirectory('SOME_OTHER_DIRECTORY');
$listedFilenames = $ftpClient->listFilesInDirectory();
var_dump($listedFilenames);
统计信息
- 总下载量: 26
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-01-31