uawdijnntqw1x1x1
IP : 216.73.217.77
Hostname : panel.codeskitter.com
Kernel : Linux panel.codeskitter.com 6.8.0-100-generic #100-Ubuntu SMP PREEMPT_DYNAMIC Tue Jan 13 16:40:06 UTC 2026 x86_64
Disable Function : apache_child_terminate, apache_note, apache_setenv, define_syslog_variables, dl, link, opcache_get_status, openlog, pcntl_exec, pcntl_fork, pcntl_setpriority, popen, posix_getpwuid, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid, posix_setuid
OS : Linux
PATH:
/
home
/
users
/
unlimited
/
www
/
api.xalonx.com
/
tests
/
..
/
database
/
..
/
vendor
/
bin
/
..
/
beste
/
json
/
src
/
Json.php
/
/
<?php declare(strict_types=1); namespace Beste; use JsonException; use SplFileInfo; use SplFileObject; use Throwable; use UnexpectedValueException; final class Json { private const ENCODE_DEFAULT = JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE; private const ENCODE_PRETTY = self::ENCODE_DEFAULT | JSON_PRETTY_PRINT; private const DECODE_DEFAULT = JSON_BIGINT_AS_STRING; /** * param non-empty-string $json * * @throws UnexpectedValueException */ public static function decode(string $json, ?bool $forceArray = null): mixed { $forceArray ??= false; $flags = $forceArray ? JSON_OBJECT_AS_ARRAY : 0; try { return json_decode($json, $forceArray, 512, $flags | self::DECODE_DEFAULT | JSON_THROW_ON_ERROR); } catch (JsonException $e) { throw new UnexpectedValueException($e->getMessage()); } } /** * @param non-empty-string $path * * @throws UnexpectedValueException */ public static function decodeFile(string $path, bool $forceArray = null): mixed { if (!is_readable($path)) { throw new UnexpectedValueException("The file at '$path' is not readable"); } if (is_dir($path)) { throw new UnexpectedValueException("'$path' points to a directory"); } $contents = file_get_contents($path); if ($contents === false) { throw new UnexpectedValueException("The file at '$path' is not readable"); } if ($contents === '') { throw new UnexpectedValueException("The file at '$path' is empty"); } return self::decode($contents, $forceArray); } /** * @throws UnexpectedValueException */ public static function encode(mixed $data, ?int $options = null): string { $options ??= 0; try { return json_encode($data, $options | self::ENCODE_DEFAULT | JSON_THROW_ON_ERROR); } catch (JsonException $e) { throw new UnexpectedValueException($e->getMessage()); } } /** * @throws UnexpectedValueException */ public static function pretty(mixed $value, ?int $options = null): string { $options ??= 0; return self::encode($value, $options | self::ENCODE_PRETTY); } }
/home/users/unlimited/www/api.xalonx.com/tests/../database/../vendor/bin/../beste/json/src/Json.php