cwola/jsonc

Providing parser of Jsonc (JSON with Comments).

v1.0.1 2022-07-10 04:47 UTC

This package is auto-updated.

Last update: 2025-03-12 06:00:09 UTC


README

PHP JSON with Comments(Cwola library).

Overview

Providing parser of JSONC(JSON with Comments) for PHP.

Requirement

  • PHP8.0+

Installation

composer require cwola/jsonc

Usage

<?php

$value = <<< JSONC
/**
 * JSON with Comments for PHP.
 * DOC BLOCK.
 */

// Line comment.

{
    "id": "xxx",  // Identify
    "name": "jhon doe"  // your name
    "age": 0,
    "keyword": [
        "xxx", 1, -5
    ]
}
JSONC;

$json = Cwola\Jsonc\decode($value);
echo $json['name'];  // jhon doe

echo Cwola\Jsonc\toJson($value);  // output json string

echo Cwola\Jsonc\toXml($value);  // output xml string

echo Cwola\Jsonc\toReadableAST($value);  // output Abstract Syntax Tree

Licence

MIT