Jsonable.php 132 B

123456789
  1. <?php
  2. namespace think\contract;
  3. interface Jsonable
  4. {
  5. public function toJson(int $options = JSON_UNESCAPED_UNICODE): string;
  6. }