php的神秘行为

时间:2017-08-05 21:37:16

标签: php mysql pdo

下面的代码按预期工作。它在表格中添加了3个条目'关键字'。

<?php
include "config.php";
try{
    // $conn = new PDO(DBINFO,USER,PASS);
    // $sql = "INSERT INTO projects (title,duration, startyear, description, tags,email) VALUES (:title,:duration, :startyear, :description, :tags,:email)";
    // $stmt = $conn->prepare($sql);
    // $stmt->bindParam(':title', $_POST['title'],PDO::PARAM_STR);
    // $stmt->bindParam(':email', $_POST['email'], PDO::PARAM_STR);
    // $stmt->bindParam(':duration', $_POST['duration'], PDO::PARAM_STR);
    // $stmt->bindParam(':startyear', $_POST['startyear'], PDO::PARAM_STR);
    // $stmt->bindParam(':description', $_POST['description'], PDO::PARAM_STR);
    // $stmt->bindParam(':tags', $_POST['tags'], PDO::PARAM_STR);
    // $stmt->execute();

    for($i=0; $i<3; $i++){
        $conn2 = new PDO(DBINFO,USER,PASS);
        $sql2 = "INSERT INTO keywords (keyword,confidence) VALUES (:keyword,:confidence)";
        $stmt2 = $conn2->prepare($sql2);
        $a = 'asdfds';
        $stmt2->bindParam(':keyword', $a,PDO::PARAM_STR);
        $stmt2->bindParam(':confidence', $a, PDO::PARAM_STR);
        $stmt2->execute();
    }
}
catch(PDOException $pe){
    die("Could not connect to the database :".$pe->getMessage());
}
?>

但是,当我运行以下代码(我取消注释第一部分)时,条目会被添加6次到&#39;关键字&#39;表

<?php
include "config.php";
try{
    $conn = new PDO(DBINFO,USER,PASS);
    $sql = "INSERT INTO projects (title,duration, startyear, description, tags,email) VALUES (:title,:duration, :startyear, :description, :tags,:email)";
    $stmt = $conn->prepare($sql);
    $stmt->bindParam(':title', $_POST['title'],PDO::PARAM_STR);
    $stmt->bindParam(':email', $_POST['email'], PDO::PARAM_STR);
    $stmt->bindParam(':duration', $_POST['duration'], PDO::PARAM_STR);
    $stmt->bindParam(':startyear', $_POST['startyear'], PDO::PARAM_STR);
    $stmt->bindParam(':description', $_POST['description'], PDO::PARAM_STR);
    $stmt->bindParam(':tags', $_POST['tags'], PDO::PARAM_STR);
    $stmt->execute();

    for($i=0; $i<3; $i++){
        $conn2 = new PDO(DBINFO,USER,PASS);
        $sql2 = "INSERT INTO keywords (keyword,confidence) VALUES (:keyword,:confidence)";
        $stmt2 = $conn2->prepare($sql2);
        $a = 'asdfds';
        $stmt2->bindParam(':keyword', $a,PDO::PARAM_STR);
        $stmt2->bindParam(':confidence', $a, PDO::PARAM_STR);
        $stmt2->execute();
    }
}
catch(PDOException $pe){
    die("Could not connect to the database :".$pe->getMessage());
}
?>

我无法理解这一点。有什么帮助吗?

1 个答案:

答案 0 :(得分:2)

为什么首先要为同一个服务器和架构创建4个不同的连接?

循环创建连接并在覆盖对语句和连接的引用时自动关闭它们。

但是循环之前的原始连接将保持打开状态并重新用于语句。如果在循环之前创建第三个连接而不关闭它,则最终会有9个条目。

因此,如果不再需要连接对象,则删除对连接对象的引用(包括关联的语句)。

或者更好地重用连接,而不是为每个语句创建新连接。