Lines Matching refs:options

106 PHP_JSON_API zend_string *php_json_encode_string(const char *s, size_t len, int options)  in php_json_encode_string()  argument
113 if (php_json_escape_string(&buf, s, len, options, &encoder) == FAILURE) { in php_json_encode_string()
121 PHP_JSON_API zend_result php_json_encode_ex(smart_str *buf, zval *val, int options, zend_long depth… in php_json_encode_ex() argument
129 return_code = php_json_encode_zval(buf, val, options, &encoder); in php_json_encode_ex()
136 PHP_JSON_API zend_result php_json_encode(smart_str *buf, zval *val, int options) /* {{{ */ in php_json_encode() argument
138 return php_json_encode_ex(buf, val, options, JSON_G(encode_max_depth)); in php_json_encode()
175 …decode_ex(zval *return_value, const char *str, size_t str_len, zend_long options, zend_long depth)… in php_json_decode_ex() argument
179 php_json_parser_init(&parser, return_value, str, str_len, (int)options, (int)depth); in php_json_decode_ex()
183 if (!(options & PHP_JSON_THROW_ON_ERROR)) { in php_json_decode_ex()
202 zend_long options = 0; in PHP_FUNCTION() local
208 Z_PARAM_LONG(options) in PHP_FUNCTION()
214 php_json_encode_zval(&buf, parameter, (int)options, &encoder); in PHP_FUNCTION()
216 if (!(options & PHP_JSON_THROW_ON_ERROR) || (options & PHP_JSON_PARTIAL_OUTPUT_ON_ERROR)) { in PHP_FUNCTION()
218 if (encoder.error_code != PHP_JSON_ERROR_NONE && !(options & PHP_JSON_PARTIAL_OUTPUT_ON_ERROR)) { in PHP_FUNCTION()
242 zend_long options = 0; in PHP_FUNCTION() local
249 Z_PARAM_LONG(options) in PHP_FUNCTION()
252 if (!(options & PHP_JSON_THROW_ON_ERROR)) { in PHP_FUNCTION()
257 if (!(options & PHP_JSON_THROW_ON_ERROR)) { in PHP_FUNCTION()
278 options |= PHP_JSON_OBJECT_AS_ARRAY; in PHP_FUNCTION()
280 options &= ~PHP_JSON_OBJECT_AS_ARRAY; in PHP_FUNCTION()
284 php_json_decode_ex(return_value, str, str_len, options, depth); in PHP_FUNCTION()