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);
{
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));
}