kotchuprik/php-short-id
Composer 安装命令:
composer require kotchuprik/php-short-id
包简介
Yet another Short ID generator. The library help you generate short id like youtube, vimeo, bit.ly, etc.
README 文档
README
The library help you generate short id like youtube, vimeo, bit.ly, etc. Short generation (creation) based on numerical ID.
Simple scenarios of using
require('vendor/autoload.php'); $shortId = new \kotchuprik\short_id\ShortId();
Creating short ID for a record from in a database
- when an app created a record in an your database with ID 424242
- $shortId->encode(424242) encodes it to 'bLTs'
- you updated the record for ID 424242 and set short_id of the record to 'bLTs'
$id = $shortId->encode(422424); // $id will be 'bLTs' // or with $neededLength = 6 $id = $shortId->encode(422424, 6); // $id will be 'babMwC'
Searching record in a database
- when someone requests rLHWfKd
- $shortId->decode('rLHWfKd') decodes it to 424242
- you found the record for ID 424242 in an your database
$id = $shortId->decode('bLTs'); // $id will be 424242 // or with $neededLength = 6 $id = $shortId->decode('babMwC', 6); // $id will be 424242
kotchuprik/php-short-id 适用场景与选型建议
kotchuprik/php-short-id 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 54.71k 次下载、GitHub Stars 达 28, 最近一次更新时间为 2015 年 05 月 08 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 kotchuprik/php-short-id 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 kotchuprik/php-short-id 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 54.71k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 30
- 点击次数: 21
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-05-08