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
07c8c403
Commit
07c8c403
authored
May 19, 2014
by
screeper
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Set Prefix update
Set prefix with a own method.
parent
5e55af24
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
2 deletions
+12
-2
MysqliDb.php
MysqliDb.php
+12
-2
No files found.
MysqliDb.php
View file @
07c8c403
...
...
@@ -100,19 +100,19 @@ class MysqliDb
* @param string $db
* @param int $port
*/
public
function
__construct
(
$host
,
$username
,
$password
,
$db
,
$p
refix
=
''
,
$p
ort
=
NULL
)
public
function
__construct
(
$host
,
$username
,
$password
,
$db
,
$port
=
NULL
)
{
$this
->
host
=
$host
;
$this
->
username
=
$username
;
$this
->
password
=
$password
;
$this
->
db
=
$db
;
$this
->
_prefix
=
$prefix
;
if
(
$port
==
NULL
)
$this
->
port
=
ini_get
(
'mysqli.default_port'
);
else
$this
->
port
=
$port
;
$this
->
connect
();
$this
->
setPrefix
();
self
::
$_instance
=
$this
;
}
...
...
@@ -156,6 +156,16 @@ class MysqliDb
$this
->
_query
=
null
;
$this
->
count
=
0
;
}
/**
* Method to set a prefix
*
* @param string $prefix Contains a tableprefix
*/
public
function
setPrefix
(
$prefix
=
''
)
{
$this
->
_prefix
=
$prefix
;
}
/**
* Pass in a raw query and an array containing the parameters to bind to the prepaird statement.
...
...
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