在数据库中,我有以下字段:“ TeST ”,我不知道大写锁定在哪里,我只想放低他并做类似的事情
SELECT * FROM table WHERE strtolower(field) = strtolower($var)
我怎样才能做到这一点?
最佳答案
使用PDO并假设使用MySQL
$stmt = $db->prepare('SELECT * FROM table WHERE LOWER(`field`) = ?');
$stmt->execute(array(strtolower($var)));
关于php - PHP-如何在查询中使用strtolower,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6852849/