Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pquery
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Taddeüs Kroes
pquery
Commits
51ba7151
Commit
51ba7151
authored
13 years ago
by
Taddes Kroes
Browse files
Options
Downloads
Patches
Plain Diff
Commented 'array' plugin.
parent
eda99477
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
pquery.array.php
+24
-0
24 additions, 0 deletions
pquery.array.php
with
24 additions
and
0 deletions
pquery.array.php
+
24
−
0
View file @
51ba7151
...
...
@@ -9,20 +9,44 @@
* @todo Documentation
*/
class
pQueryArray
extends
pQuery
implements
pQueryExtension
{
/**
* Get the value of an array alement at the given index.
*
* @param int|string $index The index to get the element of.
* @returns mixed The array value at the given index if it exists, or NULL otherwise.
*/
function
get
(
$index
)
{
return
isset
(
$this
->
variable
[
$index
])
?
$this
->
variable
[
$index
]
:
null
;
}
/**
* Check if the array is empty.
*
* @returns bool Whether the array is empty.
*/
function
is_empty
()
{
return
!
$this
->
count
();
}
/**
* Reverse the array.
*
* @returns pQueryArray The current object.
*/
function
reverse
()
{
$this
->
variable
=
array_reverse
(
$this
->
variable
);
return
$this
;
}
/**
* Execute an existing array function on the array.
*
* @var $method string A (part of the) function name to execute.
* @var method $args Additional arguments to pass to the called function.
* @returns mixed Either the current object, or the return value
* of the called array function.
*/
function
__call
(
$method
,
$args
)
{
$function
=
'array_'
.
$method
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment