福禄网络产品的SDK接口
- 支持武汉本土的网络公司
- 未来需要对接的公司越来越多
- 方便升级管理
- PHP >= 5.6
$ composer require "uutan/fulu"
use uutan\Fulu\FuLuFactory;
$config = [
'app_key' => '',
'serect' => '',
];
// 话费充值接口
$obj = FuLuFactory::factory('fulu.order.mobile.add',$config);
$obj->send([
'charge_phone' => '186XXX',
'charge_value' => '50',
'customer_order_no' => '外部订单号',
]);
MIT