mirror of
https://github.com/php/php-src.git
synced 2026-03-25 16:52:18 +01:00
12 lines
299 B
PHP
12 lines
299 B
PHP
<?php
|
|
|
|
/** @return string|false */
|
|
function json_encode($value, int $options = 0, int $depth = 512) {}
|
|
|
|
/** @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 {}
|