mirror of
https://gitee.com/fastadminnet/framework.git
synced 2026-07-08 07:32:48 +08:00
修正
This commit is contained in:
@@ -673,6 +673,7 @@ class Request
|
|||||||
{
|
{
|
||||||
if (is_array($name)) {
|
if (is_array($name)) {
|
||||||
$this->param = [];
|
$this->param = [];
|
||||||
|
$this->mergeParam = false;
|
||||||
return $this->route = array_merge($this->route, $name);
|
return $this->route = array_merge($this->route, $name);
|
||||||
}
|
}
|
||||||
return $this->input($this->route, $name, $default, $filter);
|
return $this->input($this->route, $name, $default, $filter);
|
||||||
@@ -693,6 +694,7 @@ class Request
|
|||||||
}
|
}
|
||||||
if (is_array($name)) {
|
if (is_array($name)) {
|
||||||
$this->param = [];
|
$this->param = [];
|
||||||
|
$this->mergeParam = false;
|
||||||
return $this->get = array_merge($this->get, $name);
|
return $this->get = array_merge($this->get, $name);
|
||||||
}
|
}
|
||||||
return $this->input($this->get, $name, $default, $filter);
|
return $this->input($this->get, $name, $default, $filter);
|
||||||
@@ -718,6 +720,7 @@ class Request
|
|||||||
}
|
}
|
||||||
if (is_array($name)) {
|
if (is_array($name)) {
|
||||||
$this->param = [];
|
$this->param = [];
|
||||||
|
$this->mergeParam = false;
|
||||||
return $this->post = array_merge($this->post, $name);
|
return $this->post = array_merge($this->post, $name);
|
||||||
}
|
}
|
||||||
return $this->input($this->post, $name, $default, $filter);
|
return $this->input($this->post, $name, $default, $filter);
|
||||||
@@ -743,6 +746,7 @@ class Request
|
|||||||
}
|
}
|
||||||
if (is_array($name)) {
|
if (is_array($name)) {
|
||||||
$this->param = [];
|
$this->param = [];
|
||||||
|
$this->mergeParam = false;
|
||||||
return $this->put = is_null($this->put) ? $name : array_merge($this->put, $name);
|
return $this->put = is_null($this->put) ? $name : array_merge($this->put, $name);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -789,6 +793,7 @@ class Request
|
|||||||
}
|
}
|
||||||
if (is_array($name)) {
|
if (is_array($name)) {
|
||||||
$this->param = [];
|
$this->param = [];
|
||||||
|
$this->mergeParam = false;
|
||||||
return $this->request = array_merge($this->request, $name);
|
return $this->request = array_merge($this->request, $name);
|
||||||
}
|
}
|
||||||
return $this->input($this->request, $name, $default, $filter);
|
return $this->input($this->request, $name, $default, $filter);
|
||||||
|
|||||||
Reference in New Issue
Block a user