Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
cc5fe76c
Commit
cc5fe76c
authored
Nov 02, 2013
by
Alexander Makarov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added ability to get all GET, POST, PUT, DELETE or PATCH parameters to Request
parent
8f874fa2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
10 deletions
+25
-10
Request.php
framework/yii/web/Request.php
+25
-10
No files found.
framework/yii/web/Request.php
View file @
cc5fe76c
...
...
@@ -290,59 +290,74 @@ class Request extends \yii\base\Request
/**
* Returns the named GET parameter value.
* If the GET parameter does not exist, the second parameter to this method will be returned.
* @param string $name the GET parameter name
* @param string $name the GET parameter name
. If not specified, whole $_GET is returned.
* @param mixed $defaultValue the default parameter value if the GET parameter does not exist.
* @return mixed the GET parameter value
* @see getPost
*/
public
function
get
(
$name
,
$defaultValue
=
null
)
public
function
get
(
$name
=
null
,
$defaultValue
=
null
)
{
if
(
$name
===
null
)
{
return
$_GET
;
}
return
isset
(
$_GET
[
$name
])
?
$_GET
[
$name
]
:
$defaultValue
;
}
/**
* Returns the named POST parameter value.
* If the POST parameter does not exist, the second parameter to this method will be returned.
* @param string $name the POST parameter name
* @param string $name the POST parameter name
. If not specified, whole $_POST is returned.
* @param mixed $defaultValue the default parameter value if the POST parameter does not exist.
* @return mixed the POST parameter value
* @see getParam
*/
public
function
getPost
(
$name
,
$defaultValue
=
null
)
public
function
getPost
(
$name
=
null
,
$defaultValue
=
null
)
{
if
(
$name
===
null
)
{
return
$_POST
;
}
return
isset
(
$_POST
[
$name
])
?
$_POST
[
$name
]
:
$defaultValue
;
}
/**
* Returns the named DELETE parameter value.
* @param string $name the DELETE parameter name
* @param string $name the DELETE parameter name
. If not specified, an array of DELETE parameters is returned.
* @param mixed $defaultValue the default parameter value if the DELETE parameter does not exist.
* @return mixed the DELETE parameter value
*/
public
function
getDelete
(
$name
,
$defaultValue
=
null
)
public
function
getDelete
(
$name
=
null
,
$defaultValue
=
null
)
{
if
(
$name
===
null
)
{
return
$this
->
getRestParams
();
}
return
$this
->
getIsDelete
()
?
$this
->
getRestParam
(
$name
,
$defaultValue
)
:
null
;
}
/**
* Returns the named PUT parameter value.
* @param string $name the PUT parameter name
* @param string $name the PUT parameter name
. If not specified, an array of PUT parameters is returned.
* @param mixed $defaultValue the default parameter value if the PUT parameter does not exist.
* @return mixed the PUT parameter value
*/
public
function
getPut
(
$name
,
$defaultValue
=
null
)
public
function
getPut
(
$name
=
null
,
$defaultValue
=
null
)
{
if
(
$name
===
null
)
{
return
$this
->
getRestParams
();
}
return
$this
->
getIsPut
()
?
$this
->
getRestParam
(
$name
,
$defaultValue
)
:
null
;
}
/**
* Returns the named PATCH parameter value.
* @param string $name the PATCH parameter name
* @param string $name the PATCH parameter name
. If not specified, an array of PATCH parameters is returned.
* @param mixed $defaultValue the default parameter value if the PATCH parameter does not exist.
* @return mixed the PATCH parameter value
*/
public
function
getPatch
(
$name
,
$defaultValue
=
null
)
public
function
getPatch
(
$name
=
null
,
$defaultValue
=
null
)
{
if
(
$name
===
null
)
{
return
$this
->
getRestParams
();
}
return
$this
->
getIsPatch
()
?
$this
->
getRestParam
(
$name
,
$defaultValue
)
:
null
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment