namdongvando / cardbrick
卡砖,卡片砖
V1.01
2023-06-08 07:50 UTC
Requires
- php: >=7.4
This package is auto-updated.
Last update: 2024-09-08 10:28:04 UTC
README
PHP >= 7.4
安装说明
{
"require": {
"namdongvando/cardbrick": "^1.01"
}
}
然后运行Composer安装CardBrick
composer require namdongvando/cardbrick
示例/教程
以下提供的链接旨在展示项目中包含的关键功能。目前,这些链接使用pfbc3.0-php5版本,请查看项目中包含的示例以获取PHP 5.3命名空间示例。
代码示例
<?php require 'vendor/autoload.php'; <?php use CardBrick\doithecaoonline; doithecaoonline::SetPartnerKey("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"); $doithecaoonline = new doithecaoonline(); $doithecaoonline->telco = "VIETTEL"; $doithecaoonline->amount = "300000"; $doithecaoonline->serial = "yyyyyyyyyyyy"; $doithecaoonline->code = "zzzzzzzzzzzz"; $doithecaoonline->transaction_id = "123456789"; $doithecaoonline->is_fast = 0; $res = $doithecaoonline->PartnerAddCard(); var_dump($res); ?> ?>
3.3 添加表单渲染