Welcome to mirror list, hosted at ThFree Co, Russian Federation.

BoundSql.php « Db « Migration « Updater « core - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 51486490cfd283ca2e0e8b6924865a437ad7fdfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
/**
 * Piwik - free/libre analytics platform
 *
 * @link https://matomo.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */
namespace Piwik\Updater\Migration\Db;
use Piwik\Db;

/**
 * @see Factory::boundSql()
 * @ignore
 */
class BoundSql extends Sql
{
    /**
     * @var array
     */
    private $bind;

    /**
     * BoundSql constructor.
     * @param string $sql
     * @param array $bind
     * @param int|int[] $errorCodesToIgnore
     */
    public function __construct($sql, $bind, $errorCodesToIgnore)
    {
        parent::__construct($sql, $errorCodesToIgnore);
        $this->bind = (array) $bind;
    }

    public function __toString()
    {
        $sql = parent::__toString();

        foreach ($this->bind as $value) {
            if (!is_int($value) && !is_float($value)) {
                $value = "'" . addcslashes($value, "\000\n\r\\'\"\032") . "'";
            }
            $sql = substr_replace($sql, $value, $pos = strpos($sql, '?'), $len = 1);
        }

        return $sql;
    }

    public function exec()
    {
        Db::query($this->sql, $this->bind);
    }
}