如何添加 SQL 通配符:
sprintf("SELECT robot FROM robots WHERE robot LIKE '%s'",strtolower($user_agent));
如
sprintf("SELECT robot FROM robots WHERE robot LIKE '%%s%'",strtolower($user_agent));
我需要将
%s
占位符包裹在文字 %
字符中,而不破坏占位符。
文字
%
被指定为 %%
,所以你想要 "... LIKE '%%%s%%'"