1

1つのレコードを削除するクラスのメソッドを作成したいのですが、ソースは次のとおりです。

/* Delete One Record
 * in @param (string) $tbl - name of the table
 * in @param (int) $idn - id of record
 * @return (int) - identifier of removed record
 */
public function DelOne($tbl,(int)$idn)
{

    if ($result = $this->pdo->prepare("DELETE FROM `".$tbl."` WHERE `id`=:idn"))
    {

        $result->bindValue(":idn",$idn,PDO::PARAM_INT);

        $result->execute();

    }

}

そして、この関数が、標準のTRUE / FALSEの組み合わせではなく、削除されたばかりのレコードの識別子を返すようにします。

4

1 に答える 1

4

関数を追加return $idnしますか?

public function DelOne($tbl,(int)$idn)
{

    if ($result = $this->pdo->prepare("DELETE FROM `".$tbl."` WHERE `id`=:idn"))
    {

        $result->bindValue(":idn",$idn,PDO::PARAM_INT);

        // if all is well, return $idn
        if($result->execute()) return $idn;

    }

    // if we are here, something was wrong
    return false;

}
于 2012-08-16T08:03:27.983 に答える