Skip to content

Latest commit

 

History

History
51 lines (36 loc) · 825 Bytes

Jsons.md

File metadata and controls

51 lines (36 loc) · 825 Bytes

Jsons

Jsons section

Table of Contents

encode
decode
beautify

Preparation

require_once 'Jsons.php';
$jsons = new Jsons();

// Example usage:
$data = ["name" => "John", "age" => 30, "city" => "New York"];

encode

Encode data into JSON format.

// Encoding
$encoded = Jsons::encode($data, true);
echo "Encoded JSON:\n" . $encoded . "\n\n";

decode

Decode a JSON string into a PHP variable.

// Decoding
$decoded = Jsons::decode($encoded);
echo "Decoded Array:\n";
print_r($decoded);

beautify

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;