PHP code example of yybawang / laravel-ebank

1. Go to this page and download the library: Download yybawang/laravel-ebank library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

yybawang / laravel-ebank example snippets



// 添加 reason 时如果选的身份是系统/中央,则 user_id 会强制设置为0,如果是用户身份则必 > 0
$reason = '去访问Ebank控制面板添加,一个业务行为对应一个reason';
$user_id = 1;

// 用户充值,给用户ID为1的加 100.63 的余额
\yybawang\ebank\Facades\EBank::transfer(0, $user_id, 100.63, $reason);

// 用户下单,扣用户ID为1的余额 99.43
\yybawang\ebank\Facades\EBank::transfer($user_id, 0, 99.43, $reason);

// 用户抢单,提现冻结余额100,抢到则解冻并扣除,没抢到则解冻还原余额(这里已经做了redis lock,无需再处理事务和并发,包括其它所有行为都做了 lock)
$purse = \yybawang\ebank\Facades\EBank::wallet($user_id, 'cash');  // 获取cash钱包Model对象
$freeze_id = \yybawang\ebank\Facades\EBank::freeze($purse->id, 100);   // 会翻一个int id,这个需要保存起来在你的业务表,作为后续解冻操作,不保存很难追溯哦
// 某一用户抢到单了,则给这个用户解冻并扣除余额
\yybawang\ebank\Facades\EBank::unfreeze($freeze_id);    // 其它用户没抢到单,则只需要做这一个解冻操作就可以了,会自动还原余额
\yybawang\ebank\Facades\EBank::transfer($user_id, 0, 100, $reason);