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

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

rush:PHP;"> PHP header("Content-Type:text/html;charset=utf-8"); $MysqLi=new MysqLi("localhost","root","","test"); if(MysqLi_connect_errno()) { printf("连接失败:%s
",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语句如下:

rush: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程序设计有所帮助。

相关文章

统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
前言 之前做了微信登录,所以总结一下微信授权登录并获取用户...
FastAdmin是我第一个接触的后台管理系统框架。FastAdmin是一...
之前公司需要一个内部的通讯软件,就叫我做一个。通讯软件嘛...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...