mirror of
https://github.com/php/php-src.git
synced 2025-01-10 21:14:37 +08:00
16 lines
354 B
PHP
16 lines
354 B
PHP
<?php
|
|
|
|
function json_encode($value, int $options = 0, int $depth = 512): string|false {}
|
|
|
|
/** @return mixed */
|
|
function json_decode(string $json, ?bool $assoc = null, int $depth = 512, int $options = 0) {}
|
|
|
|
function json_last_error(): int {}
|
|
|
|
function json_last_error_msg(): string {}
|
|
|
|
interface JsonSerializable
|
|
{
|
|
public function jsonSerialize();
|
|
}
|