Esempio n. 1
0
<?php
$json = <<<JSON
{ "widget": {  "debug": "on",
   "window": {
    "title": "Sample Konfabulator Widget",
  "name": "main_window",
      "width": 500,
"height": 500
 }
 }
}
JSON;

$beautifier = new Zym_Js_Beautifier();
echo $beautifier->parse($json);

/*
{
    "widget": {
        "debug": "on",
        "window": {
            "title": "Sample Konfabulator Widget",
            "name": "main_window",
            "width": 500,
            "height": 500
        }
    }
}
*/
Esempio n. 2
0
 public function testBeautify()
 {
     $this->assertEquals('{}', Zym_Js_Beautifier::beautify('{}'));
 }