PHP code example of dragermrb / php-sepa-xml-generator
1. Go to this page and download the library: Download dragermrb/php-sepa-xml-generator library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
dragermrb / php-sepa-xml-generator example snippets
//When you start to generate a SEPA Xml File, need to choose PAIN
$directDebitTransaction = \SEPA\XMLGenerator::PAIN_008_001_02; // For Direct Debit transactions is By Defaut
$creditTransfer = \SEPA\XMLGenerator::PAIN_001_001_02; //For Credit Transfer
SEPA\Factory\XMLGeneratorFactory::createXmlGeneratorObject($directDebitTransaction)->addXmlMessage(
SEPA\Factory\XMLGeneratorFactory::createXMLMessage()
->setMessageGroupHeader(
SEPA\Factory\XMLGeneratorFactory::createXMLGroupHeader()
->setMessageIdentification(1)
->setInitiatingPartyName('Amazing SRL ???? ыаывпавпва '))
->addMessagePaymentInfo(
SEPA\Factory\XMLGeneratorFactory::createXMLPaymentInfo()
->setPaymentInformationIdentification(6222)
->setSequenceType('FRST')
->setCreditorAccountIBAN('MD24 AG00 0225 1000 1310 4168')
->setCreditorAccountBIC('AABAFI42')->setCreditorName('Amazing SRL')
->setCreditorSchemeIdentification('FR07ZZZ519993')
->setRequestedCollectionDate('2013-08-06')
->setCreditorCountry('ES') // Country code. Optional
->setCreditorAddressLine1('Sample street, 1') // Optional
->setCreditorAddressLine2('Sample state, Sample zip') // Optional
->setCategoryPurposeCode('CASH') // Optional. Only one of CategoryPurposeCode or CategoryPurposePropietary
->setCategoryPurposePropietary('Sample category purpose') // Optional. Only one of CategoryPurposeCode or CategoryPurposePropietary
->setAggregatePerMandate(true) //Default Transaction aggregation option = true
->addDirectDebitTransaction( //First transaction
SEPA\Factory\XmlGeneratorFactory::createXMLDirectDebitTransaction()
->setInstructionIdentification(3)
->setEndToEndIdentification(3)
->setInstructedAmount(100.5)
->setDebtorName('Roy SRL')
->setDebitIBAN('FR14 2004 1010 0505 0001 3M02 606')
->setDebitBIC('AABAFI22') //Optional
->setMandateIdentification('SDD000000016PFX0713') //unique Identifier
->setDateOfSignature('2013-08-03')
// ->setCurrency('EUR')
->setDirectDebitInvoice(122)
->setElectronicSignature('Sample electronic signature') // Optional
->setDebtorCountry('ES') // Country code. Optional
->setDebtorAddressLine1('Sample street, 1') // Optional
->setDebtorAddressLine2('Sample state, Sample zip') // Optional
->setDebtorOrganizationIdentification('Sample ID') // Optional
->setDebtorPrivateIdentification('Sample ID') // Optional
)->addDirectDebitTransaction( //Second transaction are the same client transaction
SEPA\Factory\XmlGeneratorFactory::createXMLDirectDebitTransaction()
->setInstructionIdentification(4)
->setEndToEndIdentification(4)
->setInstructedAmount(100.5)
->setDebtorName('Roy SRL')
->setDebitIBAN('FR14 2004 1010 0505 0001 3M02 606')
->setDebitBIC('AABAFI22') //Optional
->setMandateIdentification('SDD000000016PFX0713') //unique Identifier
->setDateOfSignature('2013-08-03')
// ->setCurrency('EUR')
->setDirectDebitInvoice(122))
->addDirectDebitTransaction( //An other client Transaction
SEPA\Factory\XmlGeneratorFactory::createXMLDirectDebitTransaction()
->setInstructionIdentification(6)
->setEndToEndIdentification(6)
->setInstructedAmount(100.5)
->setDebtorName('ND SRL')
->setDebitIBAN('FR14 2004 1010 0505 0001 3M02 606')
->setDebitBIC('AABAFI22') //Optional
->setMandateIdentification('SDD000000016PFX0714') //unique Identifier
->setDateOfSignature('2013-08-03')
// ->setCurrency('EUR')
->setDirectDebitInvoice(122))
)
)->view()->save(realpath(__DIR__) . '/xml_files/sepa_test.xml');