PHPackages                             yoko/tp51-library - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. yoko/tp51-library

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

yoko/tp51-library
=================

v1.0.2(7y ago)13MITPHPPHP &gt;=5.4

Since Apr 5Pushed 7y ago1 watchersCompare

[ Source](https://github.com/xiao-linxin/tp51-library)[ Packagist](https://packagist.org/packages/yoko/tp51-library)[ RSS](/packages/yoko-tp51-library/feed)WikiDiscussions master Synced 3d ago

READMEChangelogDependencies (3)Versions (5)Used By (0)

tp51-library for ThinkPHP5.1
============================

[](#tp51-library-for-thinkphp51)

[![Latest Stable Version](https://camo.githubusercontent.com/ebe80aec102a75bb51ba1516ff2db2ff694a763a95771e3b44255d077ebe34ec/68747470733a2f2f706f7365722e707567782e6f72672f796f6b6f2f747035312d6c6962726172792f762f737461626c65)](https://packagist.org/packages/yoko/tp51-library)[![Total Downloads](https://camo.githubusercontent.com/550d907e8de0d136c2fbc09e1008ba78503ecade76b32eff99ea645fd55b59ab/68747470733a2f2f706f7365722e707567782e6f72672f796f6b6f2f747035312d6c6962726172792f646f776e6c6f616473)](https://packagist.org/packages/yoko/tp51-library)[![Latest Unstable Version](https://camo.githubusercontent.com/16da4c8f84890293f73fcc9e005c4fa33119467fc39649cd6e04de6d35818683/68747470733a2f2f706f7365722e707567782e6f72672f796f6b6f2f747035312d6c6962726172792f762f756e737461626c65)](https://packagist.org/packages/yoko/tp51-library)[![License](https://camo.githubusercontent.com/1c86c2890fd0801dd11ad3199aed8743f5a41aca18623762a2379ea78a5e5f98/68747470733a2f2f706f7365722e707567782e6f72672f796f6b6f2f747035312d6c6962726172792f6c6963656e7365)](https://packagist.org/packages/yoko/tp51-library)

tp51-library 是针对 ThinkPHP5.1 版本封装的一套工具类库。

使用说明
----

[](#使用说明)

- tp51-library 需要Composer支持
- 安装命令 `composer require yoko/tp51-library`
- 案例代码： 控制器需要继承 `library\Controller`，然后`$this`就可能使用全部功能

```
// 定义 MyController 控制器
class MyController extend \library\Controller {

    // 指定当前数据表名
    protected $dbQuery = '数据表名';

    // 显示数据列表
    public function index(){
        $this->_page($this->dbQuery);
    }

    // 当前列表数据处理
    protected function _index_page_filter(&$data){
         foreach($data as &$vo){
            // @todo 修改原列表
         }
    }

}
```

- 必要数据库表SQL（sysconf 函数需要用到这个表）

```
CREATE TABLE `system_config` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(100) DEFAULT NULL COMMENT '配置名',
  `value` varchar(500) DEFAULT NULL COMMENT '配置值',
  PRIMARY KEY (`id`) USING BTREE,
  KEY `index_system_config_name` (`name`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='系统配置';
```

列表处理
----

[](#列表处理)

```
// 列表展示
$this->_page($dbQuery, $isPage, $isDisplay, $total);

// 列表展示搜索器（按 name、title 模糊搜索；按 status 精确搜索）
$this->_query($dbQuery)->like('name,title')->equal('status')->page();

// 对列表查询器进行二次处理
$query->_query($dbQuery)->like('name,title')->equal('status');
$db = $query->db(); // @todo 这里可以对db进行操作
$this->_page($db); // 显示列表分页
```

表单处理
----

[](#表单处理)

```
// 表单显示及数据更新
$this->_form($dbQuery, $tplFile, $pkField , $where, $data);
```

删除处理
----

[](#删除处理)

```
// 数据删除处理
$this->_deleted($dbQuery);
```

禁用启用处理
------

[](#禁用启用处理)

```
// 数据禁用处理
$this->_save($dbQuery,['status'=>'0']);

// 数据启用处理
$this->_save($dbQuery,['status'=>'1']);
```

文件存储组件（ oss 及 qiniu 需要配置参数）
---------------------------

[](#文件存储组件-oss-及-qiniu-需要配置参数)

```
// 配置默认存储方式
sysconf('storage_type','文件存储类型');

// OSS存储配置
sysconf('storage_oss_domain', '文件访问域名');
sysconf('storage_oss_keyid', '接口授权AppId');
sysconf('storage_oss_secret', '接口授权AppSecret');
sysconf('storage_oss_bucket', '文件存储空间名称');
sysconf('storage_oss_is_https', '文件HTTP访问协议');
sysconf('storage_oss_endpoint', '文件存储节点域名');

// 七牛云存储配置
sysconf('storage_qiniu_region', '文件存储节点');
sysconf('storage_qiniu_domain', '文件访问域名');
sysconf('storage_qiniu_bucket', '文件存储空间名称');
sysconf('storage_qiniu_is_https', '文件HTTP访问协议');
sysconf('storage_qiniu_access_key', '接口授权AccessKey');
sysconf('storage_qiniu_secret_key', '接口授权SecretKey');

// 生成文件名称(链接url或文件md5)
$filename = \library\File::name($url,$ext,$prv,$fun);

// 获取文件内容（自动存储方式）
$result = \library\File::get($filename)

// 保存内容到文件（自动存储方式）
boolean \library\File::save($filename,$content);

// 判断文件是否存在
boolean \library\File::has($filename);

// 获取文件信息
$result = \library\File::info($filename);

//指定存储类型（调用方法）
boolean \library\File::instance('oss')->save($filename,$content);
boolean \library\File::instance('local')->save($filename,$content);
boolean \library\File::instance('qiniu')->save($filename,$content);

$result = \library\File::instance('oss')->get($filename);
$result = \library\File::instance('local')->get($filename);
$result = \library\File::instance('qiniu')->get($filename);

boolean \library\File::instance('oss')->has($filename);
boolean \library\File::instance('local')->has($filename);
boolean \library\File::instance('qiniu')->has($filename);

$resutl = \library\File::instance('oss')->info($filename);
$resutl = \library\File::instance('local')->info($filename);
$resutl = \library\File::instance('qiniu')->info($filename);
```

通用数据保存
------

[](#通用数据保存)

```
// 指定关键列更新（$where 为扩展条件）
boolean data_save($dbQuery,$data,'pkname',$where);
```

通用网络请求
------

[](#通用网络请求)

```
// 发起get请求
$result = http_get($url,$query,$options);
$result = \library\tools\Http::get($url,$query,$options);

// 发起post请求
$result = http_post($url,$data,$options);
$result = \library\tools\Http::post($url,$data,$options);
```

emoji 表情转义（部分数据库不支持可以用这个）
-------------------------

[](#emoji-表情转义部分数据库不支持可以用这个)

```
// 输入数据库前转义
$content = emoji_encode($content);

// 输出数据库后转义
$content = emoji_decode($content);
```

系统参数配置（基于 system\_config 数据表）
-----------------------------

[](#系统参数配置基于-system_config-数据表)

```
// 设置参数
sysconf($keyname,$keyvalue);

// 获取参数
$keyvalue = sysconf($kename);
```

UTF8加密算法
--------

[](#utf8加密算法)

```
// 字符串加密操作
$string = encode($content);

// 加密字符串解密
$content = decode($string);
```

###  Health Score

25

—

LowBetter than 35% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

4

Last Release

2643d ago

Major Versions

v0.0.1 → v1.0.02019-04-05

### Community

Maintainers

![](https://www.gravatar.com/avatar/e99240f7151ce71855256a0c1bb786d5d6f84d3ad8a3ac19f91585df4cb6b6f6?d=identicon)[xiao\_linxin](/maintainers/xiao_linxin)

---

Top Contributors

[![xiao-linxin](https://avatars.githubusercontent.com/u/20390177?v=4)](https://github.com/xiao-linxin "xiao-linxin (4 commits)")

### Embed Badge

![Health badge](/badges/yoko-tp51-library/health.svg)

```
[![Health](https://phpackages.com/badges/yoko-tp51-library/health.svg)](https://phpackages.com/packages/yoko-tp51-library)
```

###  Alternatives

[ichynul/tpextmyadmin

thinkphp extension

141.6k](/packages/ichynul-tpextmyadmin)[qinchen/web-utils

A web application common utils

111.5k](/packages/qinchen-web-utils)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
