• <bdo id='5Z7iw'></bdo><ul id='5Z7iw'></ul>
  • <legend id='5Z7iw'><style id='5Z7iw'><dir id='5Z7iw'><q id='5Z7iw'></q></dir></style></legend>
  • <tfoot id='5Z7iw'></tfoot>
    <i id='5Z7iw'><tr id='5Z7iw'><dt id='5Z7iw'><q id='5Z7iw'><span id='5Z7iw'><b id='5Z7iw'><form id='5Z7iw'><ins id='5Z7iw'></ins><ul id='5Z7iw'></ul><sub id='5Z7iw'></sub></form><legend id='5Z7iw'></legend><bdo id='5Z7iw'><pre id='5Z7iw'><center id='5Z7iw'></center></pre></bdo></b><th id='5Z7iw'></th></span></q></dt></tr></i><div id='5Z7iw'><tfoot id='5Z7iw'></tfoot><dl id='5Z7iw'><fieldset id='5Z7iw'></fieldset></dl></div>

        <small id='5Z7iw'></small><noframes id='5Z7iw'>

      1. 如何替换 Laravel Builder 类

        How to replace the Laravel Builder class(如何替换 Laravel Builder 类)

            <i id='GTN70'><tr id='GTN70'><dt id='GTN70'><q id='GTN70'><span id='GTN70'><b id='GTN70'><form id='GTN70'><ins id='GTN70'></ins><ul id='GTN70'></ul><sub id='GTN70'></sub></form><legend id='GTN70'></legend><bdo id='GTN70'><pre id='GTN70'><center id='GTN70'></center></pre></bdo></b><th id='GTN70'></th></span></q></dt></tr></i><div id='GTN70'><tfoot id='GTN70'></tfoot><dl id='GTN70'><fieldset id='GTN70'></fieldset></dl></div>
          1. <legend id='GTN70'><style id='GTN70'><dir id='GTN70'><q id='GTN70'></q></dir></style></legend>

            <small id='GTN70'></small><noframes id='GTN70'>

              <bdo id='GTN70'></bdo><ul id='GTN70'></ul>
              1. <tfoot id='GTN70'></tfoot>

                    <tbody id='GTN70'></tbody>
                • 本文介绍了如何替换 Laravel Builder 类的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我想用我自己的继承自 Laravel 构建器类替换它.我认为这就像 App::bind 一样简单,但似乎不起作用.我应该在哪里放置绑定以及在 Laravel 中这样做的正确方法是什么?

                  I want to replace the Laravels builder class with my own that's extending from it. I thought it would be as simple as matter of App::bind but it seems that does not work. Where should I place the binding and what is the proper way to do that in Laravel?

                  这是我尝试过的:

                  我的建造者:

                      use IlluminateDatabaseEloquentBuilder as BaseBuilder;
                      class Builder  extends  BaseBuilder
                      {
                  
                          /**
                           * Find a model by its primary key.
                           *
                           * @param  mixed  $id
                           * @param  array  $columns
                           * @return IlluminateDatabaseEloquentModel|static|null
                           */
                          public function find($id, $columns = array('*'))
                          {
                              Event::fire('before.find', array($this));
                              $result = parent::find($id, $columns);
                              Event::fire('after.find', array($this));
                              return $result;
                          }
                      }
                  

                  接下来我尝试在 bootstrap/start.php 文件中注册绑定,如下所示:

                  And next I tried to register the binding in bootstrap/start.php file like this :

                  $app->bind('Illuminate\Database\Eloquent\Builder', 'MyNameSpace\Database\Eloquent\Builder');
                  return $app;
                  

                  推荐答案

                  IlluminateDatabaseEloquentBuilder 类是一个内部类,因此它不是依赖注入到 IlluminateDatabaseEloquentModel 类,但那里是硬编码的.

                  IlluminateDatabaseEloquentBuilder class is an internal class and as such it is not dependency injected into the IlluminateDatabaseEloquentModel class, but kind of hard coded there.

                  要做你想做的事,我会将 IlluminateDatabaseEloquentModel 扩展到 MyNamespaceDatabaseEloquentModel 类并覆盖 newEloquentBuilder 函数.

                  To do what you want to do, I would extend the IlluminateDatabaseEloquentModel to MyNamespaceDatabaseEloquentModel class and override newEloquentBuilder function.

                  public function newEloquentBuilder($query)
                  {
                     return new MyNamespaceDatabaseEloquentBuilder($query);
                  }
                  

                  然后将 MyNamespaceDatabaseEloquentModel 别名为 Eloquentapp/config/app.php

                  Then alias MyNamespaceDatabaseEloquentModel to Eloquent at the aliases in app/config/app.php

                  这篇关于如何替换 Laravel Builder 类的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  DeepL的翻译效果还是很强大的,如果我们要用php实现DeepL翻译调用,该怎么办呢?以下是代码示例,希望能够帮到需要的朋友。 在这里需要注意,这个DeepL的账户和api申请比较难,不支持中国大陆申请,需要拥有香港或者海外信用卡才行,没账号的话,目前某宝可以
                  PHP通过phpspreadsheet导入Excel日期,导入系统后,全部变为了4开头的几位数字,这是为什么呢?原因很简单,将Excel的时间设置问文本,我们就能看到该日期本来的数值,上图对应的数值为: 要怎么解决呢?进行数据转换就行,这里可以封装方法,或者用第三方的
                  mediatemple - can#39;t send email using codeigniter(mediatemple - 无法使用 codeigniter 发送电子邮件)
                  Laravel Gmail Configuration Error(Laravel Gmail 配置错误)
                  Problem with using PHPMailer for SMTP(将 PHPMailer 用于 SMTP 的问题)
                  Issue on how to setup SMTP using PHPMailer in GoDaddy server(关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题)
                    <tbody id='jVeP2'></tbody>
                  <tfoot id='jVeP2'></tfoot>

                    • <small id='jVeP2'></small><noframes id='jVeP2'>

                        <bdo id='jVeP2'></bdo><ul id='jVeP2'></ul>
                        <i id='jVeP2'><tr id='jVeP2'><dt id='jVeP2'><q id='jVeP2'><span id='jVeP2'><b id='jVeP2'><form id='jVeP2'><ins id='jVeP2'></ins><ul id='jVeP2'></ul><sub id='jVeP2'></sub></form><legend id='jVeP2'></legend><bdo id='jVeP2'><pre id='jVeP2'><center id='jVeP2'></center></pre></bdo></b><th id='jVeP2'></th></span></q></dt></tr></i><div id='jVeP2'><tfoot id='jVeP2'></tfoot><dl id='jVeP2'><fieldset id='jVeP2'></fieldset></dl></div>

                        <legend id='jVeP2'><style id='jVeP2'><dir id='jVeP2'><q id='jVeP2'></q></dir></style></legend>