Lines Matching refs:depth
50 ZEND_ARG_INFO(0, depth)
56 ZEND_ARG_INFO(0, depth)
203 …ode_ex(zval *return_value, char *str, size_t str_len, zend_long options, zend_long depth) /* {{{ */ in php_json_decode_ex() argument
207 php_json_parser_init(&parser, return_value, str, str_len, (int)options, (int)depth); in php_json_decode_ex()
227 zend_long depth = PHP_JSON_PARSER_DEFAULT_DEPTH; in PHP_FUNCTION() local
229 if (zend_parse_parameters(ZEND_NUM_ARGS(), "z|ll", ¶meter, &options, &depth) == FAILURE) { in PHP_FUNCTION()
234 encoder.max_depth = (int)depth; in PHP_FUNCTION()
259 zend_long depth = PHP_JSON_PARSER_DEFAULT_DEPTH; in PHP_FUNCTION() local
262 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "s|bll", &str, &str_len, &assoc, &depth, &options) == F… in PHP_FUNCTION()
273 if (depth <= 0) { in PHP_FUNCTION()
278 if (depth > INT_MAX) { in PHP_FUNCTION()
290 php_json_decode_ex(return_value, str, str_len, options, depth); in PHP_FUNCTION()