Explorer
home
/
zoteqbgb
/
public_html
/
vendor
/
colinodell
/
json5
/
src
Location:
/home/zoteqbgb/public_html/vendor/colinodell/json5/src
Root path:
/home/zoteqbgb/public_html/config/676626
Editing: global.php
<?php // @codingStandardsIgnoreFile if (!function_exists('json5_decode')) { /** * Takes a JSON encoded string and converts it into a PHP variable. * * The parameters exactly match PHP's json_decode() function - see * http://php.net/manual/en/function.json-decode.php for more information. * * @param string $source The JSON string being decoded. * @param bool $associative When TRUE, returned objects will be converted into associative arrays. * @param int $depth User specified recursion depth. * @param int $options Bitmask of JSON decode options. * * @throws \ColinODell\Json5\SyntaxError if the JSON encoded string could not be parsed. * * @return mixed */ function json5_decode(string $source, ?bool $associative = false, int $depth = 512, int $options = 0) { return \ColinODell\Json5\Json5Decoder::decode($source, $associative, $depth, $options); } } // PHP 7.3 polyfills if (!\defined('JSON_THROW_ON_ERROR')) { \define('JSON_THROW_ON_ERROR', 1 << 22); } if (!\class_exists('JsonException')) { class JsonException extends Exception { } }
Save maftirs
Upload
Start Upload
New File
Create File
New Folder
Create Folder
Directory Contents
Name
Size
Perms
Modified
Actions
Json5Decoder.php
19,526 bytes
0644
2022-12-27 21:44
âï¸
ðï¸
Rename
SyntaxError.php
1,396 bytes
0644
2022-12-27 21:44
âï¸
ðï¸
Rename
global.php
1,180 bytes
0644
2022-12-27 21:44
âï¸
ðï¸
Rename
Chang
Apply