Files
Services_JSON/examples/example_decode.php
T
jorgecc 4f2892bc19 2.5
2025-03-02 18:59:24 -03:00

15 lines
412 B
PHP

<?php /** @noinspection ForgottenDebugOutputInspection */
use eftec\ServicesJson\Services_JSON;
include '../vendor/autoload.php';
$json='{"hello":{"a":2,"b":3},"world":[1,2,3,"aaa"]}';
echo "Decode as stdclass:<br>";
echo "<pre>";
var_dump(Services_JSON::decode($json));
echo "</pre>";
echo "Decode as array:<br>";
echo "<pre>";
var_dump(Services_JSON::decode($json, Services_JSON::GET_ARRAY));
echo "</pre>";