PHP Laravel:理解这个闭包

时间:2018-04-29 08:08:20

标签: php laravel closures

我有Laravel文档中的这个片段:

DB::table('users')
            ->whereExists(function ($query) {
                $query->select(DB::raw(1))
                      ->from('orders')
                      ->whereRaw('orders.user_id = users.id');
            })
            ->get();

我需要了解两件事。

  1. 闭包的$query参数来自哪里?我怀疑在幕后发生了一些我不明白的事情。该函数采用1个参数$query,但它来自何处,该函数如何知道此参数中的内容,传递给函数的内容是什么?
  2. 看来这个闭包没有返回值,没有return语句。那么whereExists方法如何知道闭包的返回值呢?

1 个答案:

答案 0 :(得分:2)

请参阅来源:https://github.com/laravel/framework/blob/987a21f39f203c76665f6014cbef10451689fbdd/src/Illuminate/Database/Query/Builder.php#L1333

正如您所看到的,闭包被视为回调。

因此whereExists$query传递给它。 $query是self(Builder)类的实例,因此闭包中的代码只是更新对象。

/**
 * Add an exists clause to the query.
 *
 * @param  \Closure $callback
 * @param  string   $boolean
 * @param  bool     $not
 * @return $this
 */
public function whereExists(Closure $callback, $boolean = 'and', $not = false)
{
    $query = $this->forSubQuery();
    // Similar to the sub-select clause, we will create a new query instance so
    // the developer may cleanly specify the entire exists query and we will
    // compile the whole thing in the grammar and insert it into the SQL.
    call_user_func($callback, $query);
    return $this->addWhereExistsQuery($query, $boolean, $not);
}