Lines Matching refs:options
145 PHP_JSON_API zend_string *php_json_encode_string(const char *s, size_t len, int options) in php_json_encode_string() argument
152 if (php_json_escape_string(&buf, s, len, options, &encoder) == FAILURE) { in php_json_encode_string()
160 PHP_JSON_API int php_json_encode_ex(smart_str *buf, zval *val, int options, zend_long depth) /* {{{… in php_json_encode_ex() argument
168 return_code = php_json_encode_zval(buf, val, options, &encoder); in php_json_encode_ex()
175 PHP_JSON_API int php_json_encode(smart_str *buf, zval *val, int options) /* {{{ */ in php_json_encode() argument
177 return php_json_encode_ex(buf, val, options, JSON_G(encode_max_depth)); in php_json_encode()
214 …decode_ex(zval *return_value, const char *str, size_t str_len, zend_long options, zend_long depth)… in php_json_decode_ex() argument
218 php_json_parser_init(&parser, return_value, str, str_len, (int)options, (int)depth); in php_json_decode_ex()
222 if (!(options & PHP_JSON_THROW_ON_ERROR)) { in php_json_decode_ex()
241 zend_long options = 0; in PHP_FUNCTION() local
247 Z_PARAM_LONG(options) in PHP_FUNCTION()
253 php_json_encode_zval(&buf, parameter, (int)options, &encoder); in PHP_FUNCTION()
255 if (!(options & PHP_JSON_THROW_ON_ERROR) || (options & PHP_JSON_PARTIAL_OUTPUT_ON_ERROR)) { in PHP_FUNCTION()
257 if (encoder.error_code != PHP_JSON_ERROR_NONE && !(options & PHP_JSON_PARTIAL_OUTPUT_ON_ERROR)) { in PHP_FUNCTION()
285 zend_long options = 0; in PHP_FUNCTION() local
292 Z_PARAM_LONG(options) in PHP_FUNCTION()
295 if (!(options & PHP_JSON_THROW_ON_ERROR)) { in PHP_FUNCTION()
300 if (!(options & PHP_JSON_THROW_ON_ERROR)) { in PHP_FUNCTION()
321 options |= PHP_JSON_OBJECT_AS_ARRAY; in PHP_FUNCTION()
323 options &= ~PHP_JSON_OBJECT_AS_ARRAY; in PHP_FUNCTION()
327 php_json_decode_ex(return_value, str, str_len, options, depth); in PHP_FUNCTION()