欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP批量更新数据库的示例代码

程序员文章站 2022-05-10 20:05:44
...
  1. /**
  2. * 批量更新数据库
  3. * by bbs.it-home.org
  4. */
  5. for($i=1;$isize;$i++){
  6. $query[]="update tb_enterprise set eid='$eidex[$i]' where eid=$i";
  7. }
  8. $query_string=implode(";", $query);
  9. $query_result=$db->multi_query($query);
  10. if($query_result){
  11. echo "Successed to update data!";
  12. }else{
  13. echo "Failed to update data!";
  14. }
复制代码