承接 kotchuprik/php-short-id 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

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

  1. when an app created a record in an your database with ID 424242
  2. $shortId->encode(424242) encodes it to 'bLTs'
  3. 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

  1. when someone requests rLHWfKd
  2. $shortId->decode('rLHWfKd') decodes it to 424242
  3. 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

统计信息

  • 总下载量: 54.71k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 30
  • 点击次数: 13
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 28
  • Watchers: 2
  • Forks: 10
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-05-08

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固