标签:phalcon lastinsertid 获取最后插入id
<?php $model = new model(); if($model -> create($data)) { $insertId = $model -> getWriteConnection() -> lastInsertId($model -> getSource()); } ?>
是的没错,就是如此的简单!
还可以在简单一点!
<?php $model = new model(); if($model -> create($data)) { $insertId = $model -> id; } ?>
本文出自 “天道酬勤” 博客,请务必保留此出处http://ivendor.blog.51cto.com/8613733/1576500
标签:phalcon lastinsertid 获取最后插入id
原文地址:http://ivendor.blog.51cto.com/8613733/1576500