$input = Input::get();
和
$input = Input::all();
我应该选择哪一个.
public static function all() { $input = array_merge(static::get(),static::query(),static::file()); // .... return $input; }
所以所有()调用get()并返回它的内容以及query()和file()$_FILES超全局.
偏好显然将取决于情况.我个人选择使用Input :: get($key,$default),因为我通常会知道我在做什么.