


Summary of useful functions of Laravel5.2 and laravel5.3 frameworks (with code)
This article brings you a summary of the useful functions of Laravel5.2 and laravel5.3 frameworks (with code). It has certain reference value. Friends in need can refer to it. , hope it helps you.
1. Control the number of accesses
The new feature of laravel5.2, set throttle through middleware to control the number of accesses based on IP
Principle: Through the return Pass three response headers X-RateLimit-Limit, X-RateLimit-Remaining, and Retry-After to control the number of accesses.
X-RateLimit-Limit: The maximum number of requests allowed within the specified time
X-RateLimit-Remaining: The remaining number of requests within the specified time
Retry-After: The distance below The time to wait for retry requests (s)
Code implementation:
// 一分钟内同一个IP限制访问5次 Route::group(['prefix' => 'admin', 'middleware' => 'throttle:5'], function(){ Route::get('user', 'UserController@show'); });
2. A magical command to realize login registration
laravel5.2 New featuresphp artisan make:auth
3, all()
laravel5.3 New features
laravel5 .2: DB::table('users')->get()
returns an array.
laravel5.3:DB::table('users')->get()
Returns a collection.
If we are using laravel5.3
, we can pass DB::table('users')->get()->all()
Returning an array, but returning a collection also has certain benefits. We can use some methods of the collection to return the collection. For example, to take out the first element in the collection, we can directly use the first()
method.
4, $loop
laravel5.3 new features$loop variable is used in the @foreach loop
$loop Properties:
index: Loop index starting from 1
remaining: How many entries are left in the loop
count: Total number of loop entries
first: Whether Is the first
last: whether it is the last
depth: loop level
parent: if the loop is located in another @foreach, return the parent loop reference
5. Super simple paging
Get data: User::paginate($num)
Template: $users->links()
May need to be introduced in the template css file, css file path public/css/app.css, you can directly
The above is the entire content of this article For more laravel content, please pay attention to laravel framework introductory tutorial.
Related recommendations:
Summary of how to use the collection class in Laravel (code)
laravel framework model How to create and use model
The above is the detailed content of Summary of useful functions of Laravel5.2 and laravel5.3 frameworks (with code). For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Causes and solutions for errors when using PECL to install extensions in Docker environment When using Docker environment, we often encounter some headaches...

Wordpress site file access is restricted: troubleshooting the reason why .txt file cannot be accessed recently. Some users encountered a problem when configuring the mini program business domain name: �...

Solution to permission issues when viewing Python version in Linux terminal When you try to view Python version in Linux terminal, enter python...

Running multiple PHP versions simultaneously in the same system is a common requirement, especially when different projects depend on different versions of PHP. How to be on the same...

Method for obtaining the return code when Laravel email sending fails. When using Laravel to develop applications, you often encounter situations where you need to send verification codes. And in reality...

Many website developers face the problem of integrating Node.js or Python services under the LAMP architecture: the existing LAMP (Linux Apache MySQL PHP) architecture website needs...

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

Configure the apscheduler timing task as a service on macOS platform, if you want to configure the apscheduler timing task as a service, similar to ngin...
