Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
PHP-MySQLi-Database-Class
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
Kulya
PHP-MySQLi-Database-Class
Commits
d6f0dae9
Commit
d6f0dae9
authored
Aug 02, 2017
by
Alexander Butenko
Committed by
GitHub
Aug 02, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed limit variable ordering in the comments (#659)
parent
2a0ffc22
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
MysqliDb.php
MysqliDb.php
+5
-5
No files found.
MysqliDb.php
View file @
d6f0dae9
...
...
@@ -582,7 +582,7 @@ class MysqliDb
* A method to perform select query
*
* @param string $query Contains a user-provided select query.
* @param int|array $numRows Array to define SQL limit in format Array ($
count, $offse
t)
* @param int|array $numRows Array to define SQL limit in format Array ($
offset, $coun
t)
*
* @return array Contains the returned rows from the query.
*/
...
...
@@ -654,7 +654,7 @@ class MysqliDb
* A convenient SELECT * function.
*
* @param string $tableName The name of the database table to work with.
* @param int|array $numRows Array to define SQL limit in format Array ($
count, $offse
t)
* @param int|array $numRows Array to define SQL limit in format Array ($
offset, $coun
t)
* or only $count
* @param string $columns Desired columns
*
...
...
@@ -858,7 +858,7 @@ class MysqliDb
* Delete query. Call the "where" method first.
*
* @param string $tableName The name of the database table to work with.
* @param int|array $numRows Array to define SQL limit in format Array ($
count, $offse
t)
* @param int|array $numRows Array to define SQL limit in format Array ($
offset, $coun
t)
* or only $count
*
* @return bool Indicates success. 0 or 1.
...
...
@@ -1474,7 +1474,7 @@ class MysqliDb
* any passed update data, and the desired rows.
* It then builds the SQL query.
*
* @param int|array $numRows Array to define SQL limit in format Array ($
count, $offse
t)
* @param int|array $numRows Array to define SQL limit in format Array ($
offset, $coun
t)
* or only $count
* @param array $tableData Should contain an array of data for updating the database.
*
...
...
@@ -1868,7 +1868,7 @@ class MysqliDb
/**
* Abstraction method that will build the LIMIT part of the WHERE statement
*
* @param int|array $numRows Array to define SQL limit in format Array ($
count, $offse
t)
* @param int|array $numRows Array to define SQL limit in format Array ($
offset, $coun
t)
* or only $count
*
* @return void
...
...
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