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
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Rotua Panjaitan
yii2
Commits
cee5fa5d
Commit
cee5fa5d
authored
Apr 08, 2014
by
Alex-Code
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New addSelect method
New addSelect method. Useful for scopes.
parent
3a261ffc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
+20
-0
Query.php
framework/db/Query.php
+20
-0
No files found.
framework/db/Query.php
View file @
cee5fa5d
...
...
@@ -409,6 +409,26 @@ class Query extends Component implements QueryInterface
}
/**
* Add more columns to the SELECT part of the query.
* @param string|array $columns the columns to add to the select.
* @return static the query object itself
* @see select()
*/
public
function
addSelect
(
$columns
)
{
if
(
!
is_array
(
$columns
))
{
$columns
=
preg_split
(
'/\s*,\s*/'
,
trim
(
$columns
),
-
1
,
PREG_SPLIT_NO_EMPTY
);
}
if
(
$this
->
select
===
null
)
{
$this
->
select
=
$columns
;
}
else
{
$this
->
select
=
array_merge
(
$this
->
select
,
$columns
);
}
return
$this
;
}
/**
* Sets the value indicating whether to SELECT DISTINCT or not.
* @param boolean $value whether to SELECT DISTINCT or not.
* @return static the query object itself
...
...
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