我刚刚在我刚刚安装的 laravel 包中找到了它,并且真的不知道是什么with()
......因为它没有在任何地方声明
public static function of($query)
{
$ins = with(new static); // What is with(new static) ?
$ins->save_query($query);
return $ins;
}
我刚刚在我刚刚安装的 laravel 包中找到了它,并且真的不知道是什么with()
......因为它没有在任何地方声明
public static function of($query)
{
$ins = with(new static); // What is with(new static) ?
$ins->save_query($query);
return $ins;
}
with()
不是语句,而是 Laravel 框架中的用户定义函数。
来自laravel 文档:
490: /**
491: * Short-cut for constructor method chaining.
492: *
493: * @param mixed $object
494: * @return mixed
495: */
496: function with($object)
497: {
498: return $object;
499: }