📜  pdo 表存在 - 无论代码示例

📅  最后修改于: 2022-03-11 14:56:32.661000             🧑  作者: Mango

代码示例1
function emailExists($pdo, $email) {    $stmt = $pdo->prepare("SELECT 1 FROM users WHERE email=?");    $stmt->execute([$email]);     return $stmt->fetchColumn();)if (emailExists($pdo, $email)) {    // found}