gpt4 book ai didi

php - 将 PHP 准备好的语句与 LIKE 结合起来

转载 作者:行者123 更新时间:2023-11-29 15:59:33 24 4
gpt4 key购买 nike

有人知道如何将 PHP 准备好的语句与 LIKE 结合起来吗?即

“从表中选择*,其中名称类似于%?%”;

最佳答案

% 符号需要放在分配给参数的变量中,而不是放在查询中。

我不知道你使用的是 mysqli 还是 PDO,但是使用 PDO 会是这样的:

$st = $db->prepare("SELECT * FROM table WHERE name LIKE ?");
$st->execute(array('%'.$test_string.'%'));

对于 mysqli 用户,请执行以下操作。

$test_string = '%' . $test_string . '%';
$st->bind_param('s', $test_string);
$st->execute();

关于php - 将 PHP 准备好的语句与 LIKE 结合起来,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56288348/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com