123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace phpqrcode;
- require_once 'phpqrcode.php';
- class QrCode
- {
-
- public static function png($text, $outfile = false, $level = QR_ECLEVEL_L, $size = 3, $margin = 4, $saveandprint = false)
- {
- \QRcode::png($text, $outfile, $level, $size, $margin, $saveandprint);
- }
- }
|