diff options
author | Sara Golemon <pollita@php.net> | 2016-12-31 08:35:07 -0800 |
---|---|---|
committer | Sara Golemon <pollita@php.net> | 2016-12-31 08:35:07 -0800 |
commit | 6007eb75843cba2a76a16c6b34ef2509e6560aa2 (patch) | |
tree | 76031eb0c7e6bfd9a0f40d82058087efa02eb2db | |
parent | ae1ecf1173fcbaf47aebb86a0992546f141a34e5 (diff) | |
download | php-git-6007eb75843cba2a76a16c6b34ef2509e6560aa2.tar.gz |
Use new param API in json
-rw-r--r-- | ext/json/json.c | 19 |
1 files changed, 13 insertions, 6 deletions
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; |