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の組み合わせではなく、削除されたばかりのレコードの識別子を返すようにします。