search
HomeheadlinesThe latest official version of ThinkPHP released - updated to ThinkPHP5.1.28

ThinkPHP, the most popular PHP framework, received its latest update on October 29, 2018. The following are the main contents of the ThinkPHP update.

This version mainly corrects some problems existing in the previous version and improves the related query part. Supports seamless upgrade from the previous version!

Main updates

The fields of the aggregation query method support DISTINCT

Amend the port support of the url function after defining the route

Correct the controller middleware's support for swoole

Improve the Log class save method

Improve the closure verification parameters of the verification class

Many-to-many association support specification The name of the intermediate table data

Associative aggregation query supports the closure method to specify the aggregation field

Improve the Lang class get method

Many-to-many association adds a method to determine whether the associated data exists

Improve the use of fetchsql for related queries

Improve the judgment of whether the modifier has been executed

Add afterWith and beforeWith validation rules for comparing date fields

New version features

Controller middleware improvements

Since in Swoole and other modes, the class library is resident in memory, control The controller middleware will not be executed the second time, and now the execution process of the controller middleware is no longer included in the architecture function.

Model improvements

Improved the judgment logic of whether the modifier is executed. If the modifier method is not defined, multiple assignments to model data are allowed. In this way, data can be easily modified in model events.

The fields of aggregation queries support the use of DISTINCT, for example:

User::count('DISTINCT id');

When associated aggregation queries use closures, the specified aggregation fields are supported

User::withCount(['book' => function($query){
    // 统计今年出版的书的数量 并且使用books_num作为统计字段返回
    $query->whereTime('publish_time', 'y');
    return 'books_num';
})->select();

For many-to-many relationships, you can also Supports the following usage

use think\Model;
class User extends Model{
    public function roles()
    {
        // 使用pivotDataName方法指定中间表的数据对象名称
        return $this->belongsToMany('role')
            ->pivotDataName('userRole');
    }
}
$user =  User::get(1);
$role =  Role::getByName('editor');
// 判断关联数据是否存在 如果存在则返回中间表对象
$pivot = $user->roles()->attached($role);

and also fixes the error caused when the fetchSql method is used in related queries.

Improvements in validation rules

If closures are used in validation rules, you can now add additional parameters, including

// 新增的参数包括title(规则标题)和validate(当前验证对象)
function($value, $data, $title, $validate) {}

Added beforeWith and afterWith two validation rules for comparing data from multiple date fields.

$validate = Validate::make([
    'start_time'   => 'require|beforeWith:end_time',
    'end_time'     => 'require|afterWith:start_time'
]);
if (!$validate->check($data)) {
    dump($validate->getError());
}

Extension update

This update also includes some official extension updates:

Added SeasLog log extension think -seaslog;

Swoole extension is updated to version 2.0.14;

Unit test extension is updated to version 2.0.5;

Related course recommendations:

The latest ThinkPHP 5.1 world premiere video tutorial (60 days to become a PHP expert online training class)

Dugu Jiujian (5)_ThinkPHP5 video tutorial

ThinkPHP basic practical video tutorial

thinkphp3.2 basic video tutorial

Statement
This article is reproduced at:ThinkPHP微信公众号. If there is any infringement, please contact admin@php.cn delete
thinkphp是不是国产框架thinkphp是不是国产框架Sep 26, 2022 pm 05:11 PM

thinkphp是国产框架。ThinkPHP是一个快速、兼容而且简单的轻量级国产PHP开发框架,是为了简化企业级应用开发和敏捷WEB应用开发而诞生的。ThinkPHP从诞生以来一直秉承简洁实用的设计原则,在保持出色的性能和至简的代码的同时,也注重易用性。

一起聊聊thinkphp6使用think-queue实现普通队列和延迟队列一起聊聊thinkphp6使用think-queue实现普通队列和延迟队列Apr 20, 2022 pm 01:07 PM

本篇文章给大家带来了关于thinkphp的相关知识,其中主要介绍了关于使用think-queue来实现普通队列和延迟队列的相关内容,think-queue是thinkphp官方提供的一个消息队列服务,下面一起来看一下,希望对大家有帮助。

thinkphp的mvc分别指什么thinkphp的mvc分别指什么Jun 21, 2022 am 11:11 AM

thinkphp基于的mvc分别是指:1、m是model的缩写,表示模型,用于数据处理;2、v是view的缩写,表示视图,由View类和模板文件组成;3、c是controller的缩写,表示控制器,用于逻辑处理。mvc设计模式是一种编程思想,是一种将应用程序的逻辑层和表现层进行分离的方法。

thinkphp扩展插件有哪些thinkphp扩展插件有哪些Jun 13, 2022 pm 05:45 PM

thinkphp扩展有:1、think-migration,是一种数据库迁移工具;2、think-orm,是一种ORM类库扩展;3、think-oracle,是一种Oracle驱动扩展;4、think-mongo,一种MongoDb扩展;5、think-soar,一种SQL语句优化扩展;6、porter,一种数据库管理工具;7、tp-jwt-auth,一个jwt身份验证扩展包。

实例详解thinkphp6使用jwt认证实例详解thinkphp6使用jwt认证Jun 24, 2022 pm 12:57 PM

本篇文章给大家带来了关于thinkphp的相关知识,其中主要介绍了使用jwt认证的问题,下面一起来看一下,希望对大家有帮助。

一文教你ThinkPHP使用think-queue实现redis消息队列一文教你ThinkPHP使用think-queue实现redis消息队列Jun 28, 2022 pm 03:33 PM

本篇文章给大家带来了关于ThinkPHP的相关知识,其中主要整理了使用think-queue实现redis消息队列的相关问题,下面一起来看一下,希望对大家有帮助。

thinkphp 怎么查询库是否存在thinkphp 怎么查询库是否存在Dec 05, 2022 am 09:40 AM

thinkphp查询库是否存在的方法:1、打开相应的tp文件;2、通过“ $isTable=db()->query('SHOW TABLES LIKE '."'".$data['table_name']."'");if($isTable){...}else{...}”方式验证表是否存在即可。

thinkphp3.2怎么关闭调试模式thinkphp3.2怎么关闭调试模式Apr 25, 2022 am 10:13 AM

在thinkphp3.2中,可以利用define关闭调试模式,该标签用于变量和常量的定义,将入口文件中定义调试模式设为FALSE即可,语法为“define('APP_DEBUG', false);”;开启调试模式将参数值设置为true即可。

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment