$esc_str = $db->quote($str);
// this is for PDO; for MySQLi use $db->escape_string($str) instead
$qry = "select * from test where test1 like '%$esc_str%'"
使用以下选项:
$esc_str = $db->quote($str);
$qry = "select * from test where test1 like '%".$esc_str."%'"
或
$esc_str = $db->quote($str);
`select * from test where test1 like "%$esc_str%"`
1条答案
按热度按时间tkqqtvp11#
假设您使用的是核心(香草)php:
如下所示:
使用以下选项:
或
此示例将php变量转换为https://www.virendrachandak.com/techtalk/php-double-quotes-vs-single-quotes/
希望有帮助:)