PHP 8.3.31
Preview: Json.php Size: 625 B
/home/getspomw/royalsquad.us/vendor/psy/psysh/src/Util/Json.php

<?php

/*
 * This file is part of Psy Shell.
 *
 * (c) 2012-2023 Justin Hileman
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Psy\Util;

/**
 * A static class to wrap JSON encoding/decoding with PsySH's default options.
 */
class Json
{
    /**
     * Encode a value as JSON.
     *
     * @param mixed $val
     * @param int   $opt
     */
    public static function encode($val, int $opt = 0): string
    {
        $opt |= \JSON_UNESCAPED_SLASHES | \JSON_UNESCAPED_UNICODE;

        return \json_encode($val, $opt);
    }
}

Directory Contents

Dirs: 0 × Files: 4

Name Size Perms Modified Actions
6.56 KB lrw-rw-rw- 2025-09-17 06:53:37
Edit Download
625 B lrw-rw-rw- 2025-09-17 06:53:37
Edit Download
4.89 KB lrw-rw-rw- 2025-09-17 06:53:37
Edit Download
2.89 KB lrw-rw-rw- 2025-09-17 06:53:37
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).