summaryrefslogtreecommitdiffstats
path: root/library/Toplevelview/Util/Json.php
blob: cad6b3e8f3992dabce92a24419258edd31bc1432 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php

namespace Icinga\Module\Toplevelview\Util;

use Icinga\Exception\Json\JsonEncodeException;
use Icinga\Util\Json as IcingaJson;

class Json extends IcingaJson
{
    /**
     * {@link json_encode()} wrapper
     *
     * @param   mixed   $value
     * @param   int     $options
     * @param   int     $depth
     *
     * @return  string
     * @throws  JsonEncodeException
     */
    public static function encode($value, $options = 0, $depth = 512)
    {
        if (version_compare(phpversion(), '5.4.0', '<')) {
            $encoded = json_encode($value);
        } elseif (version_compare(phpversion(), '5.5.0', '<')) {
            $encoded = json_encode($value, $options);
        } else {
            $encoded = json_encode($value, $options, $depth);
        }
        if (json_last_error() !== JSON_ERROR_NONE) {
            throw new JsonEncodeException('%s: %s', static::lastErrorMsg(), var_export($value, true));
        }
        return $encoded;
    }
}