Lines Matching refs:options

148 PHP_JSON_API int php_json_encode_ex(smart_str *buf, zval *val, int options, zend_long depth) /* {{{…  in php_json_encode_ex()  argument
156 return_code = php_json_encode_zval(buf, val, options, &encoder); in php_json_encode_ex()
163 PHP_JSON_API int php_json_encode(smart_str *buf, zval *val, int options) /* {{{ */ in php_json_encode() argument
165 return php_json_encode_ex(buf, val, options, JSON_G(encode_max_depth)); in php_json_encode()
200 …decode_ex(zval *return_value, const char *str, size_t str_len, zend_long options, zend_long depth)… in php_json_decode_ex() argument
204 php_json_parser_init(&parser, return_value, str, str_len, (int)options, (int)depth); in php_json_decode_ex()
208 if (!(options & PHP_JSON_THROW_ON_ERROR)) { in php_json_decode_ex()
227 zend_long options = 0; in PHP_FUNCTION() local
233 Z_PARAM_LONG(options) in PHP_FUNCTION()
239 php_json_encode_zval(&buf, parameter, (int)options, &encoder); in PHP_FUNCTION()
241 if (!(options & PHP_JSON_THROW_ON_ERROR) || (options & PHP_JSON_PARTIAL_OUTPUT_ON_ERROR)) { in PHP_FUNCTION()
243 if (encoder.error_code != PHP_JSON_ERROR_NONE && !(options & PHP_JSON_PARTIAL_OUTPUT_ON_ERROR)) { in PHP_FUNCTION()
271 zend_long options = 0; in PHP_FUNCTION() local
278 Z_PARAM_LONG(options) in PHP_FUNCTION()
281 if (!(options & PHP_JSON_THROW_ON_ERROR)) { in PHP_FUNCTION()
286 if (!(options & PHP_JSON_THROW_ON_ERROR)) { in PHP_FUNCTION()
307 options |= PHP_JSON_OBJECT_AS_ARRAY; in PHP_FUNCTION()
309 options &= ~PHP_JSON_OBJECT_AS_ARRAY; in PHP_FUNCTION()
313 php_json_decode_ex(return_value, str, str_len, options, depth); in PHP_FUNCTION()