예제 #1
0
파일: get.php 프로젝트: paynl/sdk
<?php

require_once '../../vendor/autoload.php';
require_once '../config.php';
try {
    $result = Paynl\DirectDebit::get('IO-9350-3111-3010');
    var_dump($result->getData());
} catch (\Paynl\Error\Error $e) {
    echo "Error: " . $e->getMessage();
}
예제 #2
0
파일: add.php 프로젝트: paynl/sdk
<?php

require_once '../../vendor/autoload.php';
require_once '../config.php';
try {
    $result = Paynl\DirectDebit::add(array('amount' => 0.1, 'bankaccountHolder' => 'N. Klant', 'bankaccountNumber' => 'NL00RAB0123456789', 'bankaccountBic' => 'RABONL2U', 'processDate' => new DateTime('tomorrow'), 'description' => 'De omschrijving', 'ipAddress' => '192.168.20.123', 'email' => '*****@*****.**', 'promotorId' => '123456789', 'tool' => 'sdk', 'info' => 'info', 'object' => 'object', 'extra1' => 'extra1', 'extra2' => 'extra2', 'extra3' => 'extra3', 'currency' => 'EUR'));
    echo $result->getMandateId();
} catch (\Paynl\Error\Error $e) {
    echo "Error: " . $e->getMessage();
}