如何使该查询起作用(给出错误):
$result = "WHERE attributes like '%"{$GetMarca}"%' ";
我需要在单引号内加上双引号,因为我正在内部搜索名为属性的JSON字段中查找特定值。
答案 0 :(得分:-1)
尝试转义您的字符串。
$result = "WHERE attributes like '%\"" . $GetMarca . "\"%'";
\字符转义“字符。
此处更详细地说明了“转义”: What does it mean to escape a string?