首页 > php教程 > PHP源码 > Mysql事务处理(一个转账程序) - PHP

Mysql事务处理(一个转账程序) - PHP

PHP中文网
发布: 2016-05-25 17:02:21
原创
2739 人浏览过

php代码

<?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=&#39;userA&#39;");
     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=&#39;userA&#39;");
     }else {
        echo &#39;余额不足&#39;;
        exit();
     }
     if(!$result or $mysqli->affected_rows!=1)
     {
        $success=FALSE;
     }
       
     $result=$mysqli->query("UPDATE account set cash=cash+$price where name=&#39;userB&#39;");
     if(!result or $mysqli->affected_rows!=1){
        $success=FALSE;
     }
       
     if($success)
     {
        $mysqli->commit();
        echo &#39;转账成功!&#39;;
     }else
     {
        $mysqli->rollback();
        echo "转账失败!";
     }
     $mysqli->autocommit(1);
     $query="select cash from account where name=?";
     $stmt=$mysqli->prepare($query);
     $stmt->bind_param(&#39;s&#39;,$name);
     $name=&#39;userA&#39;;
     $stmt->execute();
     $stmt->store_result();
     $stmt->bind_result($cash);
     while($stmt->fetch())
     echo "用户userA的值为:".$cash;
       
     $mysqli->close();
?>
 
 
 
&&&&&&&&&&&&&&&&&&
 
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 (&#39;userA&#39;,&#39;2000&#39;);
insert into account(name,cash) values (&#39;userB&#39;,&#39;10000&#39;);
登录后复制
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
最新问题
php脚本执行完就断开MySQL了吗?
来自于 1970-01-01 08:00:00
0
0
0
.htaccess文件中更改PHP版本无效的解决方法
来自于 1970-01-01 08:00:00
0
0
0
如何禁用 PHP 报告 SQL 错误?
来自于 1970-01-01 08:00:00
0
0
0
热门推荐
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板