Json.php
345 字节
<?php
namespace Lackoxygen\TiktokShop\Util;
class Json
{
public static function marshal(array $array)
{
return \json_encode($array, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE);
}
public static function unmarshal(string $value, $associative = true)
{
return \json_decode($value, $associative);
}
}