Skip to content
Snippets Groups Projects
Commit 42009d04 authored by Cyril Vazquez's avatar Cyril Vazquez
Browse files

FEAT #2482 Test placeholder and param type array for sql in()

parent eb730972
No related branches found
No related tags found
No related merge requests found
......@@ -181,6 +181,26 @@ class Database
*/
public function query($queryString, $parameters=null, $catchExceptions=false)
{
if ($parameters) {
foreach ($parameters as $key => $value) {
if (is_array($value)) {
if (is_int($key)) {
$placeholders = implode(',', array_fill(0, count($value), '?'));
preg_match_all("/\?/", $queryString, $matches, PREG_OFFSET_CAPTURE);
$match = $matches[0][$key];
$queryString = substr($queryString, 0, $match[1]) . $placeholders . substr($queryString, $match[1]+1);
} else {
$placeholdersArr = array();
foreach ($value as $pos => $item) {
$placeholdersArr[] = ':item_'.$pos;
}
$placeholders = implode(',', $placeholdersArr);
$queryString = str_replace($key, $placeholders, $queryString);
}
}
}
}
try {
$this->stmt = $this->prepare($queryString);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment