Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/camilomunhoz/php-qrcode
https://github.com/camilomunhoz/php-qrcode
Last synced: 10 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/camilomunhoz/php-qrcode
- Owner: camilomunhoz
- Created: 2022-09-30T20:24:52.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-09-30T21:01:28.000Z (over 2 years ago)
- Last Synced: 2024-10-17T00:02:00.910Z (3 months ago)
- Language: PHP
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```php
QRCode::generate('Hello world!', 400)->show();
``````php
$qrcode = new QRCode('Hello world!', 400);
$qrcode->generate();
$qrcode->show();
```