Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
slsh /
help /
[ HOME SHELL ]
Name
Size
Permission
Action
arrayfuns.hlp
1.79
KB
-rw-r--r--
base64funs.hlp
5.92
KB
-rw-r--r--
chksumfuns.hlp
1.82
KB
-rw-r--r--
cmdopt.hlp
6.83
KB
-rw-r--r--
csvfuns.hlp
14.14
KB
-rw-r--r--
forkfuns.hlp
5.42
KB
-rw-r--r--
fswalk.hlp
4.2
KB
-rw-r--r--
glob.hlp
458
B
-rw-r--r--
histfuns.hlp
7.08
KB
-rw-r--r--
jsonfuns.hlp
3.15
KB
-rw-r--r--
listfuns.hlp
5.68
KB
-rw-r--r--
onigfuns.hlp
5.3
KB
-rw-r--r--
pcrefuns.hlp
6.45
KB
-rw-r--r--
pngfuns.hlp
8.86
KB
-rw-r--r--
print.hlp
1.92
KB
-rw-r--r--
process.hlp
7.45
KB
-rw-r--r--
profile.hlp
3.38
KB
-rw-r--r--
randfuns.hlp
15.06
KB
-rw-r--r--
readascii.hlp
4.7
KB
-rw-r--r--
require.hlp
2.38
KB
-rw-r--r--
setfuns.hlp
3.33
KB
-rw-r--r--
slsmg.hlp
12.42
KB
-rw-r--r--
sockfuns.hlp
6.34
KB
-rw-r--r--
statsfuns.hlp
24.29
KB
-rw-r--r--
structfuns.hlp
2.48
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : jsonfuns.hlp
json_decode SYNOPSIS Parse JSON text into an S-Lang data structure USAGE json = json_decode (String_Type text) DESCRIPTION The `json_decode' function parses JSON data from the input string, and returns a corresponding S-Lang data structure. JSON values are represented as follows: JSON -> S-Lang object Struct_Type array List_Type string String_Type or BString_Type number (L)Long_Type or Double_Type `true' UChar_Type ('\1') `false' UChar_Type ('\0') `null' Null_Type The S-Lang structure corresponding to a JSON object with duplicate keys has no duplicate field names, but the field value is given by the last JSON value. If the input string does not contain valid JSON data, or if numeric values cannot be represented within S-Lang, or if JSON objects and/or arrays are too deeply nested, a `Json_Parse_Error' is thrown. SEE ALSO json_encode -------------------------------------------------------------- json_encode SYNOPSIS Generate JSON text from an S-Lang data structure USAGE String_Type text = json_encode (json) DESCRIPTION The `json_encode' function generates the JSON text that corresponds to the S_Lang data structure `json'. Valid input types -- i.e., those that generate text that can be parsed by `json_decode' -- are Struct_Type (for JSON objects) and List_Type or Array_Type (for JSON arrays), provided that these containers contain only the following types: S-Lang -> JSON Struct_Type object List_Type or Array_Type array String_Type or BString_Type string UChar_Type ('\1') `true' UChar_Type ('\0') `false' other non-complex numeric types number Null_Type `null' Invalid input causes a `Json_Invalid_Json_Error'. Optional whitespace in the output text can be configured by the `pre_nsep', `post_nsep', `pre_vsep', and `post_vsep' qualifiers. (Only strings built from ' ', '\t', '\n', or '\r' are allowed. Other characters are ignored.) If present, all whitespace after the final "\n" in `post_vsep' is considered as extra indentation, which accumulates for nested objects and arrays. QUALIFIERS ; pre_nsep=str: whitespace before name separator ':' in objects (default: "") ; post_nsep=str: whitespace after name separator ':' in objects (default: "") ; pre_vsep=str: whitespace before value separator ',' in objects or arrays (default: "") ; post_vsep=str: whitespace after value separator ',', after the opening, and before the closing brackets in objects or arrays (default: "") EXAMPLE % some whitespace and indentation after separators: json_encode (json; pre_nsep="", post_nsep=" ", pre_vsep="", post_vsep="\n ") % yet more whitespace around separators: json_encode (json; pre_nsep=" ", post_nsep=" ", pre_vsep=" ", post_vsep="\n\t") SEE ALSO json_decode --------------------------------------------------------------
Close