Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
U
UserAdminV2
Overview
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
庄欣
UserAdminV2
Commits
319c450f
Commit
319c450f
authored
May 09, 2012
by
Colin Viebrock
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make Input::only() and Input::except() into array_only() and array_except() helpers.
Signed-off-by: Colin Viebrock <colin@viebrock.ca>
parent
be5eaf94
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
2 deletions
+26
-2
laravel/helpers.php
+24
-0
laravel/input.php
+2
-2
No files found.
laravel/helpers.php
View file @
319c450f
...
...
@@ -246,6 +246,30 @@ function array_pluck($array, $key)
}
/**
* Get a subset of the items from the given array.
*
* @param array $array
* @param array $keys
* @return array
*/
function
array_only
(
$array
,
$keys
)
{
return
array_intersect_key
(
$array
,
array_flip
((
array
)
$keys
)
);
}
/**
* Get all of the given array except for a specified array of items.
*
* @param array $array
* @param array $keys
* @return array
*/
function
array_except
(
$array
,
$keys
)
{
return
array_diff_key
(
$array
,
array_flip
((
array
)
$keys
)
);
}
/**
* Transform Eloquent models to a JSON object.
*
* @param Eloquent|array $models
...
...
laravel/input.php
View file @
319c450f
...
...
@@ -127,7 +127,7 @@ class Input {
*/
public
static
function
only
(
$keys
)
{
return
array_
intersect_key
(
static
::
get
(),
array_flip
((
array
)
$keys
)
);
return
array_
only
(
static
::
get
(),
$keys
);
}
/**
...
...
@@ -146,7 +146,7 @@ class Input {
*/
public
static
function
except
(
$keys
)
{
return
array_
diff_key
(
static
::
get
(),
array_flip
((
array
)
$keys
)
);
return
array_
except
(
static
::
get
(),
$keys
);
}
/**
...
...
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