icingaweb2-module-director/library/Director/Core/Json.php

31 lines
672 B
PHP

<?php
namespace Icinga\Module\Director\Core;
use Icinga\Module\Director\Exception\JsonEncodeException;
class Json
{
public static function encode($mixed, $flags = null)
{
$result = \json_encode($mixed, $flags);
if ($result === false && json_last_error() !== JSON_ERROR_NONE) {
throw JsonEncodeException::forLastJsonError();
}
return $result;
}
public static function decode($string)
{
$result = \json_decode($string);
if ($result === null && json_last_error() !== JSON_ERROR_NONE) {
throw JsonEncodeException::forLastJsonError();
}
return $result;
}
}