znt/lib/zin/utils/json.func.php

9 lines
171 B
PHP

<?php
declare(strict_types=1);
namespace zin\utils;
function jsonEncode($data, $flags = 0, $depth = 512): string|false
{
return json_encode($data, $flags, $depth);
}