问题
在使用PHP的PDO扩展插入数据的时候,有时候需要获取到最后插入记录的ID作为返回信息。要怎么才能实现这个需求呢?
lastInsertId函数
使用PDO的lastInsertId函数。
但是,最近在使用的过程中发现有时候lastInsertId函数返回的是0。为什么会这样呢?
先来看看lastInsertId函数在 PHP手册 上的说明。
返回最后插入行的ID或序列值。
再来看看下面的几个例子。
测试例子
主键是ID字段,使用自增约束。
<?php $dsn = 'mysql:dbname=test;host=127.0.0.1'; $user = 'root'; $password = 'root'; try{ $dbh = new PDO($dsn, $user, $password); }catch(PDOException $e){ echo "Connection failed: " . $e->getMessage(); } for( $i = 0; $i < 10; $i++){ $sql = 'INSERT INTO `tbl_test` (id, name) VALUE (:id, :name)'; $data = array( ':id' => '', ':name' => "user_$i" ); $sth = $dbh->prepare($sql); $sth->execute($data); } $sql = 'INSERT INTO `tbl_test` (id, name) VALUE (:id, :name)'; $new_data = array( ':id' => '', ':name' => 'user_new' ); $sth = $dbh->prepare($sql); $sth->execute($new_data); $last_id = $dbh->lastInsertId(); echo 'last id: ' . $last_id;
结果
last id: 11
主键是ID字段,不使用自增约束。
<?php $dsn = 'mysql:dbname=test;host=127.0.0.1'; $user = 'root'; $password = 'root'; try{ $dbh = new PDO($dsn, $user, $password); }catch(PDOException $e){ echo "Connection failed: " . $e->getMessage(); } for( $i = 0; $i < 10; $i++){ $sql = 'INSERT INTO `tbl_test` (id, name) VALUE (:id, :name)'; $data = array( ':id' => $i, ':name' => "user_$i" ); $sth = $dbh->prepare($sql); $sth->execute($data); } $sql = 'INSERT INTO `tbl_test` (id, name) VALUE (:id, :name)'; $new_data = array( ':id' => '', ':name' => 'user_new' ); $sth = $dbh->prepare($sql); $sth->execute($new_data); $last_id = $dbh->lastInsertId(); echo 'last id: ' . $last_id;
结果
last id: 0
主键不是ID字段,主键使用自增约束。
<?php $dsn = 'mysql:dbname=test;host=127.0.0.1'; $user = 'root'; $password = 'root'; try{ $dbh = new PDO($dsn, $user, $password); }catch(PDOException $e){ echo "Connection failed: " . $e->getMessage(); } for( $i = 0; $i < 10; $i++){ $sql = 'INSERT INTO `tbl_test` (tbl_id, name) VALUE (:tbl_id, :name)'; $data = array( ':tbl_id' => $i, ':name' => "user_$i" ); $sth = $dbh->prepare($sql); $sth->execute($data); } $sql = 'INSERT INTO `tbl_test` (tbl_id, name) VALUE (:tbl_id, :name)'; $new_data = array( ':tbl_id' => '', ':name' => 'user_new' ); $sth = $dbh->prepare($sql); $sth->execute($new_data); $last_id = $dbh->lastInsertId(); echo 'last id: ' . $last_id;
结果
last id: 11
主键不是ID字段,不使用自增约束。
<?php $dsn = 'mysql:dbname=test;host=127.0.0.1'; $user = 'root'; $password = 'root'; try{ $dbh = new PDO($dsn, $user, $password); }catch(PDOException $e){ echo "Connection failed: " . $e->getMessage(); } for( $i = 0; $i < 10; $i++){ $sql = 'INSERT INTO `tbl_test` (tbl_id, name) VALUE (:tbl_id, :name)'; $data = array( ':tbl_id' => uniqid(), ':name' => "user_$i" ); $sth = $dbh->prepare($sql); $sth->execute($data); } $sql = 'INSERT INTO `tbl_test` (tbl_id, name) VALUE (:tbl_id, :name)'; $new_data = array( ':tbl_id' => uniqid(), ':name' => 'user_new' ); $sth = $dbh->prepare($sql); $sth->execute($new_data); $last_id = $dbh->lastInsertId(); echo 'last id: ' . $last_id;
结果
last id: 0
查看PHP源码
可以看到,有些例子返回0,有些例子返回最新的ID。那么lastInsertId什么情况下会返回0呢?在网上搜了很多资料,并没有发现想要的答案,翻开PHP源码,发现函数 last_insert_id 的实现源码是这样的:
可以看到,函数返回的id的值是调用mysql api中的 mysql_insert_id 函数返回的值。
查看mysql手册
翻开mysql手册,在 这里 找到这一段:
mysql_insert_id() returns the value stored into an AUTO_INCREMENT column, whether that value is automatically generated by storing NULL or 0 or was specified as an explicit value. LAST_INSERT_ID() returns only automatically generated AUTO_INCREMENT values. If you store an explicit value other than NULL or 0, it does not affect the value returned by LAST_INSERT_ID().
结论
从手册的描述可以知道, mysql_insert_id 函数返回的是储存在有 AUTO_INCREMENT 约束的字段的值,如果表中的字段不使用 AUTO_INCREMENT 约束或者使用自己生成的唯一值插入,那么该函数不会返回你所存储的值,而是返回NULL或0。因此,在没有使用AUTO_INCREMENT约束的表中,或者ID是自己生成的唯一ID,lastInsertId函数返回的都是0。
本文是探讨一个问题出现的原因,由于个人水平有限,如有建议和批评,欢迎指出。
注:本文使用的是PHP5.4.15,MySQL5.5.41。

aphpdepentioncontiveContainerIsatoolThatManagesClassDeptions,增強codemodocultion,可驗證性和Maintainability.itactsasaceCentralHubForeatingingIndections,因此reducingTightCightTightCoupOulplingIndeSingantInting。

選擇DependencyInjection(DI)用於大型應用,ServiceLocator適合小型項目或原型。 1)DI通過構造函數注入依賴,提高代碼的測試性和模塊化。 2)ServiceLocator通過中心註冊獲取服務,方便但可能導致代碼耦合度增加。

phpapplicationscanbeoptimizedForsPeedAndeffificeby:1)啟用cacheInphp.ini,2)使用preparedStatatementSwithPdoforDatabasequesies,3)3)替換loopswitharray_filtaray_filteraray_maparray_mapfordataprocrocessing,4)conformentnginxasaseproxy,5)

phpemailvalidation invoLvesthreesteps:1)格式化進行regulareXpressecthemailFormat; 2)dnsvalidationtoshethedomainhasavalidmxrecord; 3)

tomakephpapplicationsfaster,關注台詞:1)useopcodeCachingLikeLikeLikeLikeLikePachetoStorePreciledScompiledScriptbyTecode.2)MinimimiedAtabaseSqueriSegrieSqueriSegeriSybysequeryCachingandeffeftExting.3)Leveragephp7 leveragephp7 leveragephp7 leveragephpphp7功能forbettercodeefficy.4)

到ImprovephPapplicationspeed,關注台詞:1)啟用opcodeCachingwithapCutoredUcescriptexecutiontime.2)實現databasequerycachingingusingpdotominiminimizedatabasehits.3)usehttp/2tomultiplexrequlexrequestsandreduceconnection.4 limitesclection.4.4

依赖注入(DI)通过显式传递依赖关系,显著提升了PHP代码的可测试性。1)DI解耦类与具体实现,使测试和维护更灵活。2)三种类型中,构造函数注入明确表达依赖,保持状态一致。3)使用DI容器管理复杂依赖,提升代码质量和开发效率。

DatabasequeryoptimizationinPHPinvolvesseveralstrategiestoenhanceperformance.1)Selectonlynecessarycolumnstoreducedatatransfer.2)Useindexingtospeedupdataretrieval.3)Implementquerycachingtostoreresultsoffrequentqueries.4)Utilizepreparedstatementsforeffi


熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

Video Face Swap
使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱門文章

熱工具

SecLists
SecLists是最終安全測試人員的伙伴。它是一個包含各種類型清單的集合,這些清單在安全評估過程中經常使用,而且都在一個地方。 SecLists透過方便地提供安全測試人員可能需要的所有列表,幫助提高安全測試的效率和生產力。清單類型包括使用者名稱、密碼、URL、模糊測試有效載荷、敏感資料模式、Web shell等等。測試人員只需將此儲存庫拉到新的測試機上,他就可以存取所需的每種類型的清單。

SublimeText3 英文版
推薦:為Win版本,支援程式碼提示!

Safe Exam Browser
Safe Exam Browser是一個安全的瀏覽器環境,安全地進行線上考試。該軟體將任何電腦變成一個安全的工作站。它控制對任何實用工具的訪問,並防止學生使用未經授權的資源。

Dreamweaver CS6
視覺化網頁開發工具

Atom編輯器mac版下載
最受歡迎的的開源編輯器