--TEST-- PDO::quote() must accept empty string for drivers which support this feature --SKIPIF-- --FILE-- setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); try { $result = $pdo->quote(''); if (!is_string($result)) { var_dump($result); } } catch (\PDOException) { // Do nothing as quoting is not supported with this driver } ?> DONE --EXPECT-- DONE