summaryrefslogtreecommitdiffstats
path: root/system/database/DB_driver.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-06-13 12:32:30 +0200
committerAndrey Andreev <narf@bofh.bg>2012-06-13 12:32:30 +0200
commit10cbdf091b3cdbc72847dad28a1dce03a92119b6 (patch)
tree8a7cff500ac8bd4690bda9a573450a20245cd245 /system/database/DB_driver.php
parent22c3e73573d2828cec6183866b162359f873a949 (diff)
Really fix compile_binds()
Diffstat (limited to 'system/database/DB_driver.php')
-rw-r--r--system/database/DB_driver.php44
1 files changed, 35 insertions, 9 deletions
diff --git a/system/database/DB_driver.php b/system/database/DB_driver.php
index e04463429..1fece5cf7 100644
--- a/system/database/DB_driver.php
+++ b/system/database/DB_driver.php
@@ -596,28 +596,54 @@ abstract class CI_DB_driver {
*/
public function compile_binds($sql, $binds)
{
- if (empty($binds) OR empty($this->bind_marker))
- {
- return $sql;
- }
- elseif (preg_match_all('/(>|<|=|!|BETWEEN\s|AND\s)\s*('.preg_quote($this->bind_marker).')/i',
- $sql, $matches, PREG_SET_ORDER | PREG_OFFSET_CAPTURE) !== count($binds))
+ if (empty($binds) OR empty($this->bind_marker) OR strpos($sql, $this->bind_marker) === FALSE)
{
return $sql;
}
elseif ( ! is_array($binds))
{
- $binds = array($binds);
+ $binds = array($this->escape($binds));
+ $bind_count = 1;
}
else
{
// Make sure we're using numeric keys
$binds = array_values($binds);
+ $bind_count = count($binds);
+
+ // Escape the bind values
+ for ($i = 0; $i < $bind_count; $i++)
+ {
+ $binds[$i] = $this->escape($binds[$i]);
+ }
}
- for ($i = count($matches) - 1, $l = strlen($this->bind_marker); $i >= 0; $i--)
+ // Make sure not to replace a chunk inside a string that happens to match the bind marker
+ if ($c = preg_match_all("/'[^']*'/i", $sql, $matches))
+ {
+ $ml = strlen($this->bind_marker);
+ $c = preg_match_all('/'.preg_quote($this->bind_marker).'/i',
+ str_replace($matches[0],
+ str_replace($this->bind_marker, str_repeat(' ', $ml), $matches[0]),
+ $sql, $c),
+ $matches, PREG_OFFSET_CAPTURE);
+
+ // Bind values' count must match the count of markers in the query
+ if ($bind_count !== $c)
+ {
+ return $sql;
+ }
+
+ do
+ {
+ $c--;
+ $sql = substr_replace($sql, $binds[$c], $matches[0][$c][1], $ml);
+ }
+ while ($c !== 0);
+ }
+ elseif (substr_count($sql, $this->bind_marker) === count($binds))
{
- $sql = substr_replace($sql, $this->escape($binds[$i]), $matches[$i][2][1], $l);
+ return str_replace($this->bind_marker, $binds, $sql, $bind_count);
}
return $sql;