コード例 #1
0
$SofortLibBillcode->setAmount(5.55)->setCurrencyCode('EUR')->setReason('Reason Line 1', 'Reason Line 2')->setSuccessUrl('http://www.google.de')->setSuccessLinkRedirect(0)->setAbortUrl('http://www.sofort.com')->setNotificationUrl('http://www.diesundjenes.de/notify')->setUserVariable('schwuppsen');
$SofortLibBillcode->createBillcode();
if ($SofortLibBillcode->isError()) {
    //Sofort-API didn't accept the data
    echo $SofortLibBillcode->getError();
} else {
    //Retrieve Paycode or Paycode URL
    require_once dirname(__FILE__) . '/../billcode/sofortLibBillcodeDetails.inc.php';
    $SofortLibBillcodeDetails = new SofortLibBillcodeDetails($configkey);
    $SofortLibBillcodeDetails->setBillcode($SofortLibBillcode->getBillcode());
    $SofortLibBillcodeDetails->sendRequest();
    echo $SofortLibBillcodeDetails->getStatus() . '<br/>';
    echo $SofortLibBillcodeDetails->getProjectId() . '<br/>';
    echo $SofortLibBillcodeDetails->getTransaction() . '<br/>';
    echo $SofortLibBillcodeDetails->getAmount() . '<br/>';
    echo $SofortLibBillcodeDetails->getReason() . '<br/>';
    echo $SofortLibBillcodeDetails->getReason(0) . '<br/>';
    echo $SofortLibBillcodeDetails->getReason(1) . '<br/>';
    echo $SofortLibBillcodeDetails->getTimeCreated() . '<br/>';
    echo $SofortLibBillcodeDetails->getStartDate() . '<br/>';
    echo $SofortLibBillcodeDetails->getTimeUsed() . '<br/>';
    echo $SofortLibBillcodeDetails->getEndDate() . '<br/>';
    echo $SofortLibBillcodeDetails->getCurrencyCode() . '<br/>';
    echo $SofortLibBillcodeDetails->getLanguageCode() . '<br/>';
    echo $SofortLibBillcodeDetails->getSenderBankCode() . '<br/>';
    echo $SofortLibBillcodeDetails->getSenderCountryCode() . '<br/>';
    echo $SofortLibBillcodeDetails->getSenderBic() . '<br/>';
    echo $SofortLibBillcodeDetails->getUserVariable() . '<br/>';
    echo $SofortLibBillcodeDetails->getUserVariable(0) . '<br/>';
    //echo '<pre>' . print_r($SofortLibBillcodeDetails, true) . '</pre>';
}