Blogger Information
Blog 119
fans 3
comment 1
visits 94586
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
拓展 laravel DB类转查询结果为纯数组
赵大叔
Original
1439 people have browsed it

理论基础

  • 1、有(macroable)的类才可以扩展。
  • 2、可以在执行时将其它方法添加到 Collection 类。
  • 3、AppServiceProvider.php中必须要有boot方法。
  • 4、 macro('扩展的方法名称', '该方法执行的操作')参数。

代码

1、在app\providers下创建DBServiceProvider.php

  • 参考AppServiceProvider.php文件内容,可以直接复制修改。
  • 必须要有boot方法
  1. <?php
  2. namespace App\Providers;
  3. use Illuminate\Support\ServiceProvider;
  4. use Illuminate\Database\Query\Builder as QueryBuilder;
  5. class DBServiceProvider extends ServiceProvider
  6. {
  7. public function boot()
  8. {
  9. QueryBuilder::macro('arrlists', function(){
  10. $data = $this->get()->map(function ($value){
  11. return (array)$value;
  12. })->toArray();
  13. return $data;
  14. });
  15. }
  16. }

2、在config\app.php中把DBServiceProvider注册到框架

  • 参考App\Providers\RouteServiceProvider::class,修改。
  1. // 扩展DBServiceProvider
  2. App\Providers\DBServiceProvider::class,

3、使用扩展的方法

  • 和调用get()、all()一样的调用。
  1. DB::table('admin')->arrlists();

查询结果为纯数组:

总结

扩展后查询结果就变为纯数组,方便处理和调用。

Correcting teacher:天蓬老师天蓬老师

Correction status:qualified

Teacher's comments:查询结果的返回形式,现在基本上统一了
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post