fetch_assoc()) { $value=$row["cash"]; echo $value; } $mysqli->autocommit(0); if($value>=$pric" />

PHP+Mysql基于事务处理实现转账功能的方法

 2025-01-15  阅读 458  评论 8  点赞 275

摘要:本文实例讲述了php+mysql基于事务处理实现转账功能的方法。分享给大家供大家参考。具体如下: query("select cash from account where name='usera'"); while($row=$result->fetch_assoc()) { $value=$row["cash"]; echo $value; } $mysqli->autocommit(0); if($value>=$pric

本文实例讲述了php+mysql基于事务处理实现转账功能的方法。分享给大家供大家参考。具体如下:

PHP+Mysql基于事务处理实现转账功能的方法

<?php
  header("content-type:text/html;charset=utf-8");
  $mysqli=new mysqli("localhost","root","","test");
  if(mysqli_connect_errno())
  {
  printf("连接失败:%s<br>",mysqli_connect_error());
  exit();
  }
  $success=true;
  $price=8000;
  $result=$mysqli->query("select cash from account where name='usera'");
  while($row=$result->fetch_assoc())
  {
  $value=$row["cash"];
  echo $value;
  }
  $mysqli->autocommit(0);
  if($value>=$price){
  $result=$mysqli->query("update account set cash=cash-$price where name='usera'");
  }else {
  echo '余额不足';
  exit();
  }
  if(!$result or $mysqli->affected_rows!=1)
  {
  $success=false;
  }
  $result=$mysqli->query("update account set cash=cash+$price where name='userb'");
  if(!result or $mysqli->affected_rows!=1){
  $success=false;
  }
  if($success)
  {
  $mysqli->commit();
  echo '转账成功!';
  }else
  {
  $mysqli->rollback();
  echo "转账失败!";
  }
  $mysqli->autocommit(1);
  $query="select cash from account where name=?";
  $stmt=$mysqli->prepare($query);
  $stmt->bind_param('s',$name);
  $name='usera';
  $stmt->execute();
  $stmt->store_result();
  $stmt->bind_result($cash);
  while($stmt->fetch())
  echo "用户usera的值为:".$cash;
  $mysqli->close();
?>

数据库sql语句如下:


create table account{
 userid smallint unsigned not null auto_increment,
 name varchar(45) not null,
 cash decimal(9,2) not null,
 primary key(userid)
)type=innodb;
insert into account(name,cash) values ('usera','2000');
insert into account(name,cash) values ('userb','10000');

希望本文所述对大家的php程序设计有所帮助。


标签:phpphp教程

评论列表:

显示更多评论

发表评论:

管理员

承接各种程序开发,外贸网站代运营,外贸网站建设等项目
  • 内容2460
  • 积分67666
  • 金币86666

Copyright © 2024 LS'Blog-保定PHP程序员老宋个人博客 Inc. 保留所有权利。 Powered by LS'blog 3.0.3

页面耗时0.0287秒, 内存占用1.94 MB, 访问数据库31次

冀ICP备19034377号