48 lines
1.5 KiB
PHP
48 lines
1.5 KiB
PHP
<?php
|
|
// json.format.php
|
|
|
|
if(!check_function_exists("json_decode_ex")) {
|
|
function json_decode_ex($data, $options=array()) {
|
|
$result = false;
|
|
|
|
$invalid_fn = array(
|
|
"NO_FUNCTION_JSON_DECODE" => "json_decode",
|
|
"NO_FUNCTION_JSON_LAST_ERROR" => "json_last_error",
|
|
);
|
|
$error = check_invaild_function($invalid_fn);
|
|
if($error < 0) {
|
|
if(array_key_equals("assoc", $options, true)) {
|
|
$obj = @json_decode($data, true);
|
|
} else {
|
|
$obj = @json_decode($data);
|
|
}
|
|
$result = (@json_last_error() === 0) ? $obj : $result;
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
}
|
|
|
|
if(!check_function_exists("json_encode_ex")) {
|
|
function json_encode_ex($data, $options=array()) {
|
|
$result = false;
|
|
|
|
if(array_key_equals("adaptive", $options, true)) {
|
|
// 2018-06-01: Adaptive JSON is always quotes without escape non-ascii characters
|
|
$lines = array();
|
|
foreach($data as $k=>$v) {
|
|
if(is_array($v)) {
|
|
$lines[] = sprintf("\"%s\":%s", make_safe_argument($k), get_adaptive_json($v));
|
|
} else {
|
|
$lines[] = sprintf("\"%s\":\"%s\"", make_safe_argument($k), make_safe_argument($v));
|
|
}
|
|
}
|
|
$result = "{" . implode(",", $lines) . "}";
|
|
} else {
|
|
$result = json_decode($data);
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
}
|