From: Sara Golemon Date: Sat, 31 Dec 2016 16:35:07 +0000 (-0800) Subject: Use new param API in json X-Git-Tag: php-7.2.0alpha1~708 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6007eb75843cba2a76a16c6b34ef2509e6560aa2;p=php Use new param API in json --- diff --git a/ext/json/json.c b/ext/json/json.c index 219fd58cf5..c2521440c8 100644 --- a/ext/json/json.c +++ b/ext/json/json.c @@ -226,9 +226,12 @@ static PHP_FUNCTION(json_encode) zend_long options = 0; zend_long depth = PHP_JSON_PARSER_DEFAULT_DEPTH; - if (zend_parse_parameters(ZEND_NUM_ARGS(), "z|ll", ¶meter, &options, &depth) == FAILURE) { - return; - } + ZEND_PARSE_PARAMETERS_START(1, 3) + Z_PARAM_ZVAL_DEREF(parameter) + Z_PARAM_OPTIONAL + Z_PARAM_LONG(options) + Z_PARAM_LONG(depth) + ZEND_PARSE_PARAMETERS_END(); php_json_encode_init(&encoder); encoder.max_depth = (int)depth; @@ -259,9 +262,13 @@ static PHP_FUNCTION(json_decode) zend_long depth = PHP_JSON_PARSER_DEFAULT_DEPTH; zend_long options = 0; - if (zend_parse_parameters(ZEND_NUM_ARGS(), "s|bll", &str, &str_len, &assoc, &depth, &options) == FAILURE) { - return; - } + ZEND_PARSE_PARAMETERS_START(1, 4) + Z_PARAM_STRING(str, str_len) + Z_PARAM_OPTIONAL + Z_PARAM_BOOL(assoc) + Z_PARAM_LONG(depth) + Z_PARAM_LONG(options) + ZEND_PARSE_PARAMETERS_END(); JSON_G(error_code) = PHP_JSON_ERROR_NONE;