gpt4 book ai didi

php - 如何在 mySQL 的 REGEXP 中添加 PHP 变量

转载 作者:行者123 更新时间:2023-11-29 08:16:28 25 4
gpt4 key购买 nike

如何在 mySQL 的 REGEXP 中添加 PHP 变量

我的代码是这样的

SELECT count(product_id) as totalCount FROM ref_products WHERE misc REGEXP '(.*\"level_id\":\'".$course_level_id."'\.*)'     

最佳答案

假设您使用双引号字符串 ("):

$sql = "SELECT count(product_id) as totalCount FROM ref_products WHERE misc REGEXP '(.*\"level_id\":\'".$course_level_id."'.*)'";

假设您使用单引号字符串 ('):

$sql = 'SELECT count(product_id) as totalCount FROM ref_products WHERE misc REGEXP \'(.*\"level_id\":'.$course_level_id.'.*)\'';

关于php - 如何在 mySQL 的 REGEXP 中添加 PHP 变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20519281/

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