Файловый менеджер - Редактировать - /home/kckglobal/public_html/portal/vendor/azjezz/psl/src/Psl/Json/encode.php
Назад
<?php declare(strict_types=1); namespace Psl\Json; use JsonException; use Psl\Str; use function json_encode; use const JSON_PRESERVE_ZERO_FRACTION; use const JSON_PRETTY_PRINT; use const JSON_THROW_ON_ERROR; use const JSON_UNESCAPED_SLASHES; use const JSON_UNESCAPED_UNICODE; /** * Returns a string containing the JSON representation of the supplied value. * * @pure * * @throws Exception\EncodeException If an error occurred. */ function encode(mixed $value, bool $pretty = false, int $flags = 0): string { $flags |= JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES | JSON_PRESERVE_ZERO_FRACTION | JSON_THROW_ON_ERROR; if ($pretty) { $flags |= JSON_PRETTY_PRINT; } try { $json = json_encode($value, $flags); } catch (JsonException $e) { throw new Exception\EncodeException(Str\format('%s.', $e->getMessage()), $e->getCode(), $e); } return $json; }
| ver. 1.4 |
Github
|
.
| PHP 8.2.28 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка