# Jsonnet-PHP **Repository Path**: neeke/Jsonnet-PHP ## Basic Information - **Project Name**: Jsonnet-PHP - **Description**: The Google Jsonnet for PHP - **Primary Language**: C - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 8 - **Forks**: 1 - **Created**: 2015-06-03 - **Last Updated**: 2020-12-17 ## Categories & Tags **Categories**: web-dev-toolkits **Tags**: None ## README # jsonnet The Google Jsonnet for PHP ### Google Jsonnet Tutorial Jsonnet language, from its most basic features to its powerful object model, punctuated with examples drawn from the world of cocktails. These examples are meant to be fun, and although a little contrived, do not restrict our thinking to any one particular application of Jsonnet. Caveat: Note that Jsonnet unparses JSON in a simple way. In particular, it alphabetically reorders object fields in its output. This is natural and compatible with JSON, since if order is meaningful, an array of pairs should be used instead of an object. Also, unparsing JSON using a canonical ordering of field names makes it possible to use diff to compare outputs. However, the example output on this page has been manually re-ordered in order to allow easier visual comparison to the given input. The whitespace of the output has also been tweaked to make it fit more neatly on the page. So, if you run these examples yourself, the output might be different (but equivalent). For more information on Jsonnet, please see: * [Jsonnet home page](https://jsonnet.org) * [Jsonnet git repo](https://github.com/google/jsonnet) ### Install Jsonnet for PHP The pecl package is: http://pecl.php.net/package/jsonnet To install Jsonnet, run: ``` pecl install jsonnet ``` or: ``` wget -O Jsonnet.Latest.tar.gz https://pecl.php.net/get/jsonnet mkdir Jsonnet-PHP && tar -xzvf Jsonnet.Latest.tar.gz -C ./Jsonnet-PHP cd Jsonnet-PHP/Jsonnet-1.0.0 phpize ./configure make && make install ``` ### Simple Syntax Improvements #### Input (Jsonnet) ```jsonnet { cocktails: { // Ingredient quantities are in fluid ounces. "Tom Collins": { ingredients: [ { kind: "Farmers Gin", qty: 1.5 }, { kind: "Lemon", qty: 1 }, { kind: "Simple Syrup", qty: 0.5 }, { kind: "Soda", qty: 2 }, { kind: "Angostura", qty: "dash" }, ], garnish: "Maraschino Cherry", served: "Tall", }, Manhattan: { ingredients: [ { kind: "Rye", qty: 2.5 }, { kind: "Sweet Red Vermouth", qty: 1 }, { kind: "Angostura", qty: "dash" }, ], garnish: "Maraschino Cherry", served: "Straight Up", }, } } ``` #### Output (JSON) ```json { "cocktails": { "Tom Collins": { "ingredients": [ { "kind": "Farmers Gin", "qty": 1.5 }, { "kind": "Lemon", "qty": 1 }, { "kind": "Simple Syrup", "qty": 0.5 }, { "kind": "Soda", "qty": 2 }, { "kind": "Angostura", "qty": "dash" } ], "garnish": "Maraschino Cherry", "served": "Tall" }, "Manhattan": { "ingredients": [ { "kind": "Rye", "qty": 2.5 }, { "kind": "Sweet Red Vermouth", "qty": 1 }, { "kind": "Angostura", "qty": "dash" } ], "garnish": "Maraschino Cherry", "served": "Straight Up" } } } ``` ### Demo of PHP ```php Jsonnet::evaluateFile('bar_menu.1.jsonnet'); $Snippet = ' { cocktails: { // Ingredient quantities are in fluid ounces. "Tom Collins": { ingredients: [ { kind: "Farmers Gin", qty: 1.5 }, { kind: "Lemon", qty: 1 }, { kind: "Simple Syrup", qty: 0.5 }, { kind: "Soda", qty: 2 }, { kind: "Angostura", qty: "dash" }, ], garnish: "Maraschino Cherry", served: "Tall", }, Manhattan: { ingredients: [ { kind: "Rye", qty: 2.5 }, { kind: "Sweet Red Vermouth", qty: 1 }, { kind: "Angostura", qty: "dash" }, ], garnish: "Maraschino Cherry", served: "Straight Up", }, } } '; var_dump(Jsonnet::evaluateSnippet($Snippet)); ``` ### PHP Re Result ``` /usr/local/php/php-7.0.6-zts-debug/bin/php --re jsonnet Extension [ extension #40 Jsonnet version v1.3.1 ] { - Constants [2] { Constant [ string JSONNET_PHP_VERSION ] { v1.3.1 } Constant [ string JSONNET_PHP_AUTHOR ] { Chitao.Gao [ neeke@php.net ] } } - Functions { Function [ function jsonnet_get_version ] { } Function [ function jsonnet_get_author ] { } } - Classes [1] { Class [ class Jsonnet ] { - Constants [0] { } - Static properties [0] { } - Static methods [4] { Method [ static public method evaluateFile ] { - Parameters [1] { Parameter #0 [ $file_path ] } } Method [ static public method evaluateSnippet ] { - Parameters [1] { Parameter #0 [ $snippet_string ] } } Method [ static public method fmtFile ] { - Parameters [1] { Parameter #0 [ $file_path ] } } Method [ static public method fmtSnippet ] { - Parameters [1] { Parameter #0 [ $snippet_string ] } } } - Properties [0] { } - Methods [2] { Method [ public method __construct ] { } Method [ public method __destruct ] { } } } } } ``` ### CodeTips ```php