PHP code example of marcin-orlowski / bank-qrcode-formatter
1. Go to this page and download the library: Download marcin-orlowski/bank-qrcode-formatter 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/ */
marcin-orlowski / bank-qrcode-formatter example snippets
$str = (new \MarcinOrlowski\QrcodeFormatter\Builder())
->name('Marcin sp. z o.o.')
->bankAccount('01234567890123456789012345')
->title('FV 1234/2020')
->amount(140.50)
->build();
createQrcode($str, '/tmp/qrcode.png');