示例#1
0
文件: get.php 项目: paynl/sdk
<?php

require_once '../../../vendor/autoload.php';
require_once '../../config.php';
try {
    $result = Paynl\DirectDebit\Recurring::get('IO-3674-2126-0710');
    echo var_dump($result->getData()['result']);
} catch (\Paynl\Error\Error $e) {
    echo "Error: " . $e->getMessage();
}