21 lines
501 B
PHP
21 lines
501 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Symfony package.
|
|
*
|
|
* (c) Fabien Potencier <fabien@symfony.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
use Symfony\Polyfill\Php83 as p;
|
|
|
|
if (\PHP_VERSION_ID >= 80300) {
|
|
return;
|
|
}
|
|
|
|
if (!function_exists('json_validate')) {
|
|
function json_validate(string $json, int $depth = 512, int $flags = 0): bool { return p\Php83::json_validate($json, $depth, $flags); }
|
|
}
|