替换“?”在字符串中的数组值

时间:2013-04-30 10:28:28

标签: php mysql pdo

我正在尝试更换每个“?”字符串中的值来自数组。每个“?”是数组的下一个值。

我想知道是否有更好的方法来执行以下操作:

$query = 'SELECT * FROM pages WHERE id = ? AND language = ?';
$values = array('1', 'en');
foreach ($values as $value) {
    $query = preg_replace('/\?/', '\''.$value.'\'', $query, 1);
}
echo '<pre>'.print_r($query, true).'</pre>';

想用本机PHP(不是PDO扩展)来做到这一点。

2 个答案:

答案 0 :(得分:2)

Mysqli和PDO与PHP一样原生。

您可以使用mysqli中的bind_param来完成此操作。例如:

$stmt = $mysqli->prepare("SELECT * FROM pages WHERE id = ? AND language = ?");
$stmt->bind_param('is', 1, "en");

在这种情况下,is引用参数的类型,如此表所示(链接中可用):

i   corresponding variable has type integer
d   corresponding variable has type double
s   corresponding variable has type string
b   corresponding variable is a blob and will be sent in packets

答案 1 :(得分:2)

使用绑定

PDO中的

$sth = $dbh->prepare('SELECT name, colour, calories
                      FROM fruit
                      WHERE calories < :calories AND colour = :colour');
$sth->bindValue(':calories', $calories, PDO::PARAM_INT);
$sth->bindValue(':colour', $colour, PDO::PARAM_STR);
$sth->execute();

http://php.net/manual/pl/pdostatement.bindvalue.php

在mysqli中

$stmt = $mysqli->prepare("INSERT INTO CountryLanguage VALUES (?, ?, ?, ?)");
$stmt->bind_param('sssd', $code, $language, $official, $percent);

http://www.php.net/manual/en/mysqli-stmt.bind-param.php

如果你想以STUPID方式进行,你可以使用循环或递归

$select = "SELECT * FROM pages WHERE id = ? AND language = ?";
$params = array('param', 'param2');
while(preg_match('/\?/', $select)) $select = str_replace("?", array_shift($params),     $select);

但这很愚蠢