我想爲我的類中的方法,刪除一條記錄,這裏是源:是否有可能返回上次刪除的記錄ID?
/* 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組合的標識符。
Y不能你只返回$ IDN? – Karma 2012-08-16 08:02:34