How to fix issue with QR code in php when data is more than QR code size?
How to fix issue with QR code in php when data is more than QR code size?
If your QR code cant work just use correct size of the qr code according to its data in binary format.
If data size is too big you can cut data like this
use mb_strcut
$data = mb_strcut($data,0,(int)$options['size']-3,'UTF-8')."...";
done