使用 PDO 检查 MySQL 中的表是否存在且无异常
在 PHP 中使用 PDO 处理 MySQL 数据库时,必须检查是否存在特定表存在而不触发异常。一种常见的方法是查询 information_schema 数据库以获取有关现有表的信息。
使用准备好的语句来查询 information_schema.tables 表提供了一种可靠且安全的解决方案:
$sql = "SELECT 1 FROM information_schema.tables WHERE table_schema = database() AND table_name = ?"; $stmt = $pdo->prepare($sql); $stmt->execute([$tableName]); $exists = (bool)$stmt->fetchColumn();
在此代码片段:
如果表存在,此方法返回 true,否则返回 false,不会生成可能中断应用程序的异常流动。
以上是如何使用 PDO 检查表是否存在于 MySQL 中且没有异常?的详细内容。更多信息请关注PHP中文网其他相关文章!