whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
azjezz
/
psl
/
src
/
Psl
/
Encoding
/
Hex
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/azjezz/psl/src/Psl/Encoding/Hex/encode.php
<?php declare(strict_types=1); namespace Psl\Encoding\Hex; /** * Convert a binary string into a hexadecimal string. * * Hex ( Base16 ) character set: * [0-9] [a-f] * 0x30-0x39, 0x61-0x66 * * @pure */ function encode(string $binary): string { return bin2hex($binary); }
Copyright ©2021 || Defacer Indonesia