https://github.com/abbychau/php-qr-code
https://github.com/abbychau/php-qr-code
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/abbychau/php-qr-code
- Owner: abbychau
- Created: 2019-09-29T13:59:24.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-09-29T14:08:02.000Z (about 6 years ago)
- Last Synced: 2025-02-14T03:15:30.606Z (11 months ago)
- Language: PHP
- Size: 128 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# php-qr-code
PHP Qr Code Generator compatible with php 7.0
Ported from [http://phpqrcode.sourceforge.net/](http://phpqrcode.sourceforge.net/)
## Installation
The recommended method of installing this library is via [Composer](https://getcomposer.org/).
Run the following command from your project root:
```bash
$ composer require abbychau/php-qrcode
```
## Usage
```php
require __DIR__ . "/vendor/autoload.php";
QRcode::png('https://github.com/ziplr/php-qr-code', false, QR_ECLEVEL_H, 10, 0);
```
[examples] (http://phpqrcode.sourceforge.net/examples/index.php)