Home
last modified time | relevance | path

Searched refs:options (Results 126 – 150 of 490) sorted by path

12345678910>>...20

/PHP-7.2/ext/imap/tests/
H A Dimap_fetchheader_variation4.phpt9 /* Prototype : string imap_fetchheader(resource $stream_id, int $msg_no [, int $options])
H A Dimap_fetchheader_variation5.phpt9 /* Prototype : string imap_fetchheader(resource $stream_id, int $msg_no [, int $options])
H A Dimap_mail_copy_basic.phpt11 …_mail_copy ( resource $imap_stream , string $msglist , string $mailbox [, int $options = 0 ] )
H A Dimap_mail_move_basic.phpt11 …_mail_move ( resource $imap_stream , string $msglist , string $mailbox [, int $options = 0 ] )
H A Dskipif.inc8 $options = OP_HALFOPEN; // this should be enough to verify server present
11 $mbox = @imap_open($mailbox, $username, $password, $options, $retries);
/PHP-7.2/ext/interbase/
H A Dinterbase.c271 ZEND_ARG_INFO(0, options)
279 ZEND_ARG_INFO(0, options)
/PHP-7.2/ext/intl/converter/
H A Dconverter.c779 ZEND_ARG_ARRAY_INFO(0, options, 1)
785 zval *options = NULL; in PHP_METHOD() local
789 &str, &str_len, &dest, &dest_len, &src, &src_len, &options) == FAILURE) { in PHP_METHOD()
801 if (options && zend_hash_num_elements(Z_ARRVAL_P(options))) { in PHP_METHOD()
805 …(tmpzval = zend_hash_str_find(Z_ARRVAL_P(options), "from_subst", sizeof("from_subst") - 1)) != NUL… in PHP_METHOD()
811 … (tmpzval = zend_hash_str_find(Z_ARRVAL_P(options), "to_subst", sizeof("to_subst") - 1)) != NULL && in PHP_METHOD()
/PHP-7.2/ext/intl/doc/
H A DTutorial.txt184 There is almost no difference between the Off and Lowercase_First options in terms of results,
/PHP-7.2/ext/intl/tests/
H A Dcollation_customization.phpt9 * Check effects of changing misc collattion options.
/PHP-7.2/ext/intl/uchar/tests/
H A Dbug70453.phpt14 string(7) "options"
/PHP-7.2/ext/intl/uchar/
H A Duchar.c432 ZEND_ARG_INFO(0, options)
437 zend_long options = U_FOLD_CASE_DEFAULT; in IC_METHOD() local
439 if ((zend_parse_parameters(ZEND_NUM_ARGS(), "z|l", &zcp, &options) == FAILURE) || in IC_METHOD()
444 ret = u_foldCase(cp, options); in IC_METHOD()
/PHP-7.2/ext/json/
H A Djson.c47 ZEND_ARG_INFO(0, options)
55 ZEND_ARG_INFO(0, options)
197 return_code = php_json_encode_zval(buf, val, options, &encoder); in php_json_encode_ex()
233 zend_long options = 0; in PHP_FUNCTION() local
239 Z_PARAM_LONG(options) in PHP_FUNCTION()
245 php_json_encode_zval(&buf, parameter, (int)options, &encoder); in PHP_FUNCTION()
270 zend_long options = 0; in PHP_FUNCTION() local
277 Z_PARAM_LONG(options) in PHP_FUNCTION()
300 options |= PHP_JSON_OBJECT_AS_ARRAY; in PHP_FUNCTION()
302 options &= ~PHP_JSON_OBJECT_AS_ARRAY; in PHP_FUNCTION()
[all …]
H A Djson_encoder.c37 int options, php_json_encoder *encoder);
74 if (options & PHP_JSON_PRETTY_PRINT) { in php_json_pretty_print_char()
84 if (options & PHP_JSON_PRETTY_PRINT) { in php_json_pretty_print_indent()
265 if (options & PHP_JSON_NUMERIC_CHECK) { in php_json_escape_string()
275 php_json_encode_double(buf, d, options); in php_json_escape_string()
320 if ((options & PHP_JSON_UNESCAPED_UNICODE) in php_json_escape_string()
358 if (options & PHP_JSON_HEX_QUOT) { in php_json_escape_string()
398 if (options & PHP_JSON_HEX_TAG) { in php_json_escape_string()
406 if (options & PHP_JSON_HEX_TAG) { in php_json_escape_string()
414 if (options & PHP_JSON_HEX_AMP) { in php_json_escape_string()
[all …]
H A Djson_parser.tab.c1870 if (parser->scanner.options & PHP_JSON_OBJECT_AS_ARRAY) { in php_json_parser_object_create()
1938 int options, in php_json_parser_init_ex() argument
1943 php_json_scanner_init(&parser->scanner, str, str_len, options); in php_json_parser_init_ex()
1954 int options, in php_json_parser_init() argument
1962 options, in php_json_parser_init()
H A Djson_parser.y262 if (parser->scanner.options & PHP_JSON_OBJECT_AS_ARRAY) { in php_json_parser_object_create()
330 int options, in php_json_parser_init_ex() argument
335 php_json_scanner_init(&parser->scanner, str, str_len, options); in php_json_parser_init_ex()
346 int options, in php_json_parser_init() argument
354 options, in php_json_parser_init()
H A Djson_scanner.c97 void php_json_scanner_init(php_json_scanner *s, char *str, size_t str_len, int options) in php_json_scanner_init() argument
101 s->options = options; in php_json_scanner_init()
334 } else if (s->options & PHP_JSON_BIGINT_AS_STRING) { in php_json_scan()
642 if (s->options & (PHP_JSON_INVALID_UTF8_IGNORE | PHP_JSON_INVALID_UTF8_SUBSTITUTE)) { in php_json_scan()
643 if (s->options & PHP_JSON_INVALID_UTF8_SUBSTITUTE) { in php_json_scan()
1063 if (s->options & PHP_JSON_INVALID_UTF8_SUBSTITUTE) { in php_json_scan()
H A Djson_scanner.re96 void php_json_scanner_init(php_json_scanner *s, char *str, size_t str_len, int options)
100 s->options = options;
188 } else if (s->options & PHP_JSON_BIGINT_AS_STRING) {
284 if (s->options & (PHP_JSON_INVALID_UTF8_IGNORE | PHP_JSON_INVALID_UTF8_SUBSTITUTE)) {
285 if (s->options & PHP_JSON_INVALID_UTF8_SUBSTITUTE) {
378 if (s->options & PHP_JSON_INVALID_UTF8_SUBSTITUTE) {
H A Dphp_json.h98 PHP_JSON_API int php_json_encode_ex(smart_str *buf, zval *val, int options, zend_long depth);
99 PHP_JSON_API int php_json_encode(smart_str *buf, zval *val, int options);
100 …_json_decode_ex(zval *return_value, char *str, size_t str_len, zend_long options, zend_long depth);
H A Dphp_json_encoder.h38 int php_json_encode_zval(smart_str *buf, zval *val, int options, php_json_encoder *encoder);
H A Dphp_json_parser.h68 int options,
77 int options,
H A Dphp_json_scanner.h38 int options; /* options */ member
45 void php_json_scanner_init(php_json_scanner *scanner, char *str, size_t str_len, int options);
/PHP-7.2/ext/json/tests/
H A Dbug63737.phpt2 Bug #63737 (json_decode does not properly decode with options parameter)
/PHP-7.2/ext/ldap/tests/
H A Dbug48441.phpt2 ldap_search() bug 48441 - options persists after specifying them in ldap_search
H A Dldap_set_option_cafiles_basic.phpt2 ldap_set_option() - Basic test for TLS CA/Cert/CRL/DH/Key file ldap options
H A Dldap_set_option_crlcheck_basic.phpt12 die("skip OpenSSL required for CRL check options, got: $package");

Completed in 79 milliseconds

12345678910>>...20