From: Sara Golemon Date: Sat, 31 Dec 2016 16:56:15 +0000 (-0800) Subject: Use new param API in tokenizer X-Git-Tag: php-7.2.0alpha1~705 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8bbfe174a8029256fdb252d08ba641b6662b4fbc;p=php Use new param API in tokenizer --- diff --git a/ext/tokenizer/tokenizer.c b/ext/tokenizer/tokenizer.c index 9537e91251..11c82654b4 100644 --- a/ext/tokenizer/tokenizer.c +++ b/ext/tokenizer/tokenizer.c @@ -275,9 +275,11 @@ PHP_FUNCTION(token_get_all) zend_long flags = 0; zend_bool success; - if (zend_parse_parameters(ZEND_NUM_ARGS(), "S|l", &source, &flags) == FAILURE) { - return; - } + ZEND_PARSE_PARAMETERS_START(1, 2) + Z_PARAM_STR(source) + Z_PARAM_OPTIONAL + Z_PARAM_LONG(flags) + ZEND_PARSE_PARAMETERS_END(); if (flags & TOKEN_PARSE) { success = tokenize_parse(return_value, source); @@ -297,9 +299,9 @@ PHP_FUNCTION(token_name) { zend_long type; - if (zend_parse_parameters(ZEND_NUM_ARGS(), "l", &type) == FAILURE) { - return; - } + ZEND_PARSE_PARAMETERS_START(1, 1) + Z_PARAM_LONG(type) + ZEND_PARSE_PARAMETERS_END(); RETVAL_STRING(get_token_type_name(type)); }