rjkip/ftp-php
最新稳定版本:v1.1.0
Composer 安装命令:
composer require rjkip/ftp-php
包简介
A small, easy-to-use library for accessing FTP servers.
README 文档
README
FTP for PHP (c) David Grudl, 2008 (http://davidgrudl.com)
Introduction
FTP for PHP is a very small and easy-to-use library for accessing FTP servers.
David Grudl's project at GoogleCode: http://ftp-php.googlecode.com
David Grudl's PHP blog: http://phpfashion.com
Requirements
- PHP 5.3+
Installation
Install FtpPhp through Composer. Just specify rjkip/ftp-php as a dependency.
Usage
Opens an FTP connection to the specified host:
<?php require "vendor/autoload.php"; use FtpPhp\FtpClient; use FtpPhp\FtpException; $ftp = new FtpClient; $ftp->connect($host);
Login with username and password
<?php $ftp->login($username, $password);
You can also pass a URI to the constructor, as such:
<?php $ftp = new FtpClient("ftp://user:password@host/path");
<?php $arr = $ftp->nlist(); foreach ($arr as $value) { echo $value.PHP_EOL; }
Upload the file
<?php $ftp->put($destination_file, $source_file, FtpClient::BINARY);
Close the FTP stream
<?php # Connection is also closed when `$ftp` goes out of scope. $ftp->close();
Ftp throws exception if operation failed. So you can simply do following:
<?php try { $ftp = new FtpClient; $ftp->connect($host); $ftp->login($username, $password); $ftp->put($destination_file, $source_file, FtpClient::BINARY); } catch (FtpException $e) { echo 'Error: ', $e->getMessage(); }
On the other hand, if you'd like the possible exception quietly catch, call methods with the prefix 'try':
<?php $ftp->tryDelete($destination_file);
When the connection is accidentally interrupted, you can re-establish it using method $ftp->reconnect().
Changelog
v1.1.0 - 2014-01-13
- Introducing a base exception class for all FtpPhp exceptions. This shouldn't break any of your exception handling, unless you rely on
FtpExceptiondirectly extending\Exception. - All classes comply largely to PSR-2.
- Updated docblocks to satisfy PhpStorm.
rjkip/ftp-php 适用场景与选型建议
rjkip/ftp-php 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 188.76k 次下载、GitHub Stars 达 15, 最近一次更新时间为 2026 年 01 月 04 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 rjkip/ftp-php 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 rjkip/ftp-php 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 188.76k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 17
- 点击次数: 22
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2026-01-04