How to get last insert id with Phalcon?
问题 I tried using LAST_INSERT_ID() when getting the last id of the autoincrement primary key column but I get EOF exception : function add($tab) { $champs= ""; $value = ""; $separateur =""; $tab["commande_date"] = convertDateFormat5($tab["commande_date"]); foreach ($tab as $k => $v){ if ($k == "salle_code" || $k == "table_code") continue; $champs .= $separateur . $k; $value .= $separateur . "'" . $v . "'"; $separateur = ","; } $champs = '('.$champs.')'; $value = '('.$value.')'; $sSQL = " INSERT