Files
zyt/server/vendor/topthink/think-helper/src/contract/Jsonable.php
T
2026-03-01 14:17:59 +08:00

9 lines
132 B
PHP

<?php
namespace think\contract;
interface Jsonable
{
public function toJson(int $options = JSON_UNESCAPED_UNICODE): string;
}