An open API service indexing awesome lists of open source software.

https://github.com/abbychau/php-qr-code


https://github.com/abbychau/php-qr-code

Last synced: 9 months ago
JSON representation

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)