编程语言
首页 > 编程语言> > PHP :: get()和$_GET []之间的差异

PHP :: get()和$_GET []之间的差异

作者:互联网

有什么区别

Input::get('value') 

还有这个:

$_GET['value']

什么时候更好地使用其中之一?

解决方法:

Input :: get()是Laravel的一个函数

$email = Input::get('email');

Note: The “get” method is used for all request types (GET, POST, PUT,
and DELETE), not just GET requests.

从输入数组中检索所有输入:

$array = Input::get();

检索所有输入,包括$_FILES数组:

$input = Input::all();

And $_GET is superglobal variable in PHP used to get parameters from
querystring .

标签:php,superglobals
来源: https://codeday.me/bug/20190713/1453774.html