-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJsons.php
65 lines (55 loc) · 1.79 KB
/
Jsons.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
class Jsons
{
/**
* Encode data into JSON format.
*
* @param mixed $data The data to be encoded.
* @param bool $prettyPrint Whether to format the JSON with indentation for readability.
* @return string The JSON-encoded string or an empty string on failure.
*/
public static function encode($data, $prettyPrint = false)
{
$options = 0;
if ($prettyPrint && version_compare(PHP_VERSION, '5.4.0', '>=')) {
$options |= JSON_PRETTY_PRINT;
}
$json = json_encode($data, $options);
// Ensure compatibility with PHP versions where json_encode might fail silently.
if (json_last_error() !== JSON_ERROR_NONE) {
return '';
}
return $json;
}
/**
* Decode a JSON string into a PHP variable.
*
* @param string $json The JSON string to be decoded.
* @param bool $assoc When TRUE, returned objects will be converted into associative arrays.
* @return mixed The decoded PHP variable or NULL on failure.
*/
public static function decode($json, $assoc = true)
{
$result = json_decode($json, $assoc);
// Check for errors during decoding.
if (json_last_error() !== JSON_ERROR_NONE) {
return null;
}
return $result;
}
/**
* Beautify a JSON string for improved readability.
*
* @param string $json The JSON string to beautify.
* @return string The beautified JSON string or the original input if an error occurs.
*/
public static function beautify($json)
{
$decoded = self::decode($json, true);
if ($decoded === null) {
return $json; // Return the original string if decoding fails.
}
return self::encode($decoded, true);
}
}
?>