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
2a19a70c
Commit
2a19a70c
authored
Nov 19, 2012
by
Josh Campbell
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5 from rittme/patch-1
Update MysqliDb.php
parents
ac3330d3
bb1258b7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
10 deletions
+23
-10
MysqliDb.php
MysqliDb.php
+23
-10
No files found.
MysqliDb.php
View file @
2a19a70c
...
...
@@ -88,7 +88,7 @@ class MysqliDB {
unset
(
$this
->
_whereTypeList
);
unset
(
$this
->
_paramTypeList
);
}
/**
* Pass in a raw query and an array containing the parameters to bind to the prepaird statement.
*
...
...
@@ -100,18 +100,18 @@ class MysqliDB {
{
$this
->
_query
=
filter_var
(
$query
,
FILTER_SANITIZE_STRING
);
$stmt
=
$this
->
_prepareQuery
();
if
(
gettype
(
$bindParams
)
===
'array'
)
{
$params
=
array
(
''
);
// Create the empty 0 index
foreach
(
$bindParams
as
$prop
=>
$val
)
{
$params
[
0
]
.=
$this
->
_determineType
(
$val
);
array_push
(
$params
,
$bindParams
[
$prop
]);
}
call_user_func_array
(
array
(
$stmt
,
"bind_param"
),
$this
->
refValues
(
$params
));
}
$stmt
->
execute
();
$this
->
reset
();
...
...
@@ -222,8 +222,8 @@ class MysqliDB {
$this
->
_where
[
$whereProp
]
=
$whereValue
;
return
$this
;
}
/**
* This methods returns the ID of the last inserted item
*
...
...
@@ -234,6 +234,17 @@ class MysqliDB {
return
$this
->
_mysqli
->
insert_id
;
}
/**
* Escape harmful characters which might affect a query.
*
* @param string $str The string to escape.
* @return string The escaped string.
*/
public
function
escape
(
$str
)
{
return
$this
->
_mysqli
->
real_escape_string
(
$str
);
}
/**
* This method is needed for prepared statements. They require
* the data type of the field to be bound with "i" s", etc.
...
...
@@ -300,7 +311,7 @@ class MysqliDB {
}
}
}
//Prepair the where portion of the query
$this
->
_query
.=
' WHERE '
;
$i
=
1
;
...
...
@@ -315,7 +326,7 @@ class MysqliDB {
$i
++
;
}
}
// Determine if is INSERT query
...
...
@@ -389,11 +400,13 @@ class MysqliDB {
$meta
=
$stmt
->
result_metadata
();
$row
=
array
();
while
(
$field
=
$meta
->
fetch_field
())
{
array_push
(
$parameters
,
$row
[
$field
->
name
]);
$row
[
$field
->
name
]
=
NULL
;
$parameters
[]
=
&
$row
[
$field
->
name
];
}
call_user_func_array
(
array
(
$stmt
,
"bind_result"
),
$this
->
refValues
(
$parameters
)
);
call_user_func_array
(
array
(
$stmt
,
"bind_result"
),
$parameters
);
while
(
$stmt
->
fetch
())
{
$x
=
array
();
...
...
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