Laravel Container (容器) 深入理解 (下)

2017-10-15
阅读 14 分钟
10k
上文介绍了 Dependency Injection Containers (容器) 的基本概念,现在接着深入讲解 Laravel 的 Container。

Laravel Container (容器) 概念详解 (上)

2017-10-01
阅读 4 分钟
3.5k
本文翻译自 Symfony 作者 Fabien Potencier 的 《Dependency Injection in general and the implementation of a Dependency Injection Container in PHP》 系列文章。 Part 1: What is Dependency Injection? Part 2: Do you need a Dependency Injection Container? Part 3: Introduction to the Symfony Service Cont...

Laravel Dependency Injection (依赖注入) 概念详解

2017-09-29
阅读 4 分钟
2.4k
本文翻译自 Symfony 作者 Fabien Potencier 的 《Dependency Injection in general and the implementation of a Dependency Injection Container in PHP》 系列文章。 Part 1: What is Dependency Injection? Part 2: Do you need a Dependency Injection Container? Part 3: Introduction to the Symfony Service Cont...

Laravel Mass-Assignment (批量赋值) 的真正含义

2017-09-28
阅读 2 分钟
4.3k
假设用户表 users 结构如下,且通过 is_admin 字段值为 1 或 0 来判断用户是否为 管理员,其中 is_admin 字段默认值为 0:

Laravel 获取 Route Parameters (路由参数) 的 5 种方法

2017-09-27
阅读 2 分钟
4.6k
Laravel 获取路由参数的方式有很多,并且有个小坑,汇总如下。 假设我们设置了一个路由参数: {代码...} 现在我们访问 http://test.dev/1/2 在 TestController 中: {代码...} 以上就是 Laravel 获取路由参数的 5 种方法。 原创。 所有 Laravel 文章均已收录至 laravel-tips 项目。

修复 PHP7.1、7.2beta 中 JSON_encode () 处理 float/double 型数值时溢出的问题

2017-09-10
阅读 2 分钟
5.5k
在 PHP7.1、7.2beta 中,使用 json_encode() 函数处理 float/double 型数值时会出现溢出。 网上一般认为是由于 php.ini 中 serialize_precision 项中配置不当引起,但实际际修改此配置项并不能解决问题。 对此,我参考网上的方法写了一个 package ,欢迎使用 ^_^ 。