whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
amphp
/
serialization
/
src
/
Upload File:
files >> //home/kckglobal/www/portal/vendor/amphp/serialization/src/functions.php
<?php namespace Amp\Serialization; /** * @param string $data Binary data. * * @return string Unprintable characters encoded as \x##. */ function encodeUnprintableChars(string $data): string { return \preg_replace_callback("/[^\x20-\x7e]/", function (array $matches): string { return "\\x" . \dechex(\ord($matches[0])); }, $data); }
Copyright ©2021 || Defacer Indonesia