jstewmc/encode-file
Composer 安装命令:
composer require jstewmc/encode-file
包简介
Encode a file.
README 文档
README
Encode a file.
use Jstewmc\EncodeFile\Encode; // set the filename $filename = '/path/to/foo.txt'; // create an ASCII encoded string $contents = mb_convert_encoding('foo', 'ASCII'); // put the contents into the file file_put_contents($filename, $contents); // is the file UTF-32 encoded? mb_check_encoding(file_get_contents($filename), 'UTF-32'); // returns false // create the service // keep in mind, you'll need to implement the Read and Write interfaces // $service = new Encode(new Read(), new Write()); // convert the file to UTF-32 $service($filename, 'UTF-32'); // is the file UTF-32 encoded? mb_check_encoding(file_get_contents($filename), 'UTF-32'); // returns true
PHP Extensions
This library requires PHP's non-default mbstring extension. If the service is instantiated without the mbstring extension loaded, a BadMethodCallException will be thrown.
Dependencies
This library depends on (and provides) two interfaces for a read-file service and a write-file service. The former must implement a __invoke(string $filename): string method, and the latter must implement a __invoke(string $filename, string $contents): int method.
The read-file and write-file interfaces MAY be implemented by the jstewmc/read-file and jstewmc/write-file libraries, respectively. For example, in your application, extend Jstewmc\ReadFile\Read and implement Jstewmc\EncodeFile\Read:
namespace My\App; use Jstewmc\EncodeFile\Read as ReadInterface; use Jstewmc\ReadFile\Read as ReadParent; class Read extends ReadParent implements ReadInterface { // nothing yet }
From encoding
Keep in mind, it's difficult to detect a string's character encoding. Even PHP's mb_detect_encoding() function is not perfect. For example, mb_detect_encoding() will almost never detect Windows-1252 encoding, even if the string actually is Windows-1252 encoded (see Bug #64667 for details).
To prevent erroneously detecting the file's from encoding, you MAY include it as the service's third argument. If the "from" encoding is not given, the library will attempt to detect it.
use Jstewmc\EncodeFile\Encode; $service = new Encode(new Read(), new Write()); // encode file as UTF-8 from Windows-1252 $service('/path/to/file.txt', 'UTF-8', 'Windows-1252');
Author
License
Version
0.3.0, September 6, 2016
- Add
ReadandWriteinterfaces. - Delete dependency on jstewmc/read-file and jstewmc/write-file.
0.2.0, August 31, 2016
- Rename repository to
encode-file. - Refactor library to use jstewmc/read-file and jstewmc/write-file
0.1.0, August 27, 2016
- Initial release
jstewmc/encode-file 适用场景与选型建议
jstewmc/encode-file 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 45 次下载、GitHub Stars 达 0, 最近一次更新时间为 2016 年 09 月 01 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「php」 「file」 「encode」 「jstewmc」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 jstewmc/encode-file 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 jstewmc/encode-file 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 jstewmc/encode-file 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
The file manager intended for using Laravel with CKEditor / TinyMCE / Colorbox
Encode integer IDs using a preset or customized symbol set
Runn Me! Serialization Library
Laravel Media Popup to upload/view the files
PMVC Plugin for File information
Mapper for accessing resources in KWCMS
统计信息
- 总下载量: 45
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-09-01