Jsons section
require_once 'Jsons.php';
$jsons = new Jsons();
// Example usage:
$data = ["name" => "John", "age" => 30, "city" => "New York"];
Encode data into JSON format.
// Encoding
$encoded = Jsons::encode($data, true);
echo "Encoded JSON:\n" . $encoded . "\n\n";
Decode a JSON string into a PHP variable.
// Decoding
$decoded = Jsons::decode($encoded);
echo "Decoded Array:\n";
print_r($decoded);
Beautify a JSON string for improved readability.
// Beautifying
$uglyJson = '{"name":"John","age":30,"city":"New York"}';
$beautified = Jsons::beautify($uglyJson);
echo "\nBeautified JSON:\n" . $beautified;