Home
last modified time | relevance | path

Searched refs:options (Results 76 – 100 of 490) sorted by path

12345678910>>...20

/PHP-7.2/ext/filter/tests/
H A D052.phpt15 var_dump(filter_var($data, FILTER_CALLBACK, array('options' => 'filter_cb')));
17 var_dump(filter_var_array($data, array('bar' => array('filter' => FILTER_CALLBACK, 'options' => 'fi…
H A D053.phpt10 'options' => 'filter_test',
H A D055.phpt9 array("01-23-45-67-89-ab", array("options" => array("separator" => "-"))),
10 array("01-23-45-67-89-ab", array("options" => array("separator" => "."))),
11 array("01-23-45-67-89-ab", array("options" => array("separator" => ":"))),
20 array("01-23-45-67-89-ab", array("options" => array("separator" => "--"))),
21 array("01-23-45-67-89-ab", array("options" => array("separator" => ""))),
H A Dbug50632.phpt7 …ET, 'foo', FILTER_VALIDATE_INT, array('flags' => FILTER_REQUIRE_SCALAR, 'options' => array('defaul…
H A Dbug73054.phpt11 'options' => ['default' => 2],
14 'options' => ['default' => 2],
H A Dbug7586.phpt18 'options' => array("min_range"=>1, "max_range"=>10)
H A Dbug76366.phpt21 $args['foo']['options'] = [];
24 $options = &$args['foo']['options'];
26 #set options
27 $options['min_range'] = 1;
28 $options['max_range'] = 5;
H A Dcallback_closure.phpt11 var_dump(filter_var($var, FILTER_CALLBACK, array('options'=> $callback)));
H A Dcallback_non_modified_var.phpt11 var_dump(filter_var($var, FILTER_CALLBACK, array('options'=>'callback')));
/PHP-7.2/ext/gd/
H A Dconfig.m46 dnl Configure options
42 dnl Checks for the configure options
H A Dgd.c843 ZEND_ARG_INFO(0, options)
4974 zval *options = NULL; in PHP_FUNCTION() local
4978 if (zend_parse_parameters(ZEND_NUM_ARGS(), "l|z", &type, &options) == FAILURE) { in PHP_FUNCTION()
4986 if (!options || Z_TYPE_P(options) != IS_ARRAY) { in PHP_FUNCTION()
4990 if ((tmp = zend_hash_str_find(Z_ARRVAL_P(options), "x", sizeof("x") - 1)) != NULL) { in PHP_FUNCTION()
4997 if ((tmp = zend_hash_str_find(Z_ARRVAL_P(options), "y", sizeof("y") - 1)) != NULL) { in PHP_FUNCTION()
5017 if (!options) { in PHP_FUNCTION()
5022 angle = zval_get_double(options); in PHP_FUNCTION()
/PHP-7.2/ext/gd/tests/
H A Dbug67248.phpt15 Warning: imageaffinematrixget(): Array expected as options in %s on line %d
17 Warning: imageaffinematrixget(): Array expected as options in %s on line %d
/PHP-7.2/ext/gmp/
H A Dgmp.c49 ZEND_ARG_INFO(0, options)
55 ZEND_ARG_INFO(0, options)
1053 int gmp_import_export_validate(zend_long size, zend_long options, int *order, int *endian) in gmp_import_export_validate() argument
1061 switch (options & (GMP_LSW_FIRST | GMP_MSW_FIRST)) { in gmp_import_export_validate()
1075 switch (options & (GMP_LITTLE_ENDIAN | GMP_BIG_ENDIAN | GMP_NATIVE_ENDIAN)) { in gmp_import_export_validate()
1102 zend_long options = GMP_MSW_FIRST | GMP_NATIVE_ENDIAN; in ZEND_FUNCTION() local
1106 if (zend_parse_parameters(ZEND_NUM_ARGS(), "s|ll", &data, &data_len, &size, &options) == FAILURE) { in ZEND_FUNCTION()
1110 if (gmp_import_export_validate(size, options, &order, &endian) == FAILURE) { in ZEND_FUNCTION()
1132 zend_long options = GMP_MSW_FIRST | GMP_NATIVE_ENDIAN; in ZEND_FUNCTION() local
1137 if (zend_parse_parameters(ZEND_NUM_ARGS(), "z|ll", &gmpnumber_arg, &size, &options) == FAILURE) { in ZEND_FUNCTION()
[all …]
/PHP-7.2/ext/gmp/tests/
H A Dgmp_export.phpt10 // format is [output, size, options, expected]
60 // Invalid options
75 Warning: gmp_export(): Invalid options: Conflicting word orders in %s on line %d
78 Warning: gmp_export(): Invalid options: Conflicting word endianness in %s on line %d
H A Dgmp_import.phpt10 // format is [expected, size, options, input]
62 // Invalid options
86 Warning: gmp_import(): Invalid options: Conflicting word orders in %s on line %d
89 Warning: gmp_import(): Invalid options: Conflicting word endianness in %s on line %d
/PHP-7.2/ext/hash/
H A Dhash.c336 zend_long options = 0; in php_hashcontext_ctor() local
342 if (zend_parse_parameters(argc, "S|lS", &algo, &options, &key) == FAILURE) { in php_hashcontext_ctor()
354 if (options & PHP_HASH_HMAC) { in php_hashcontext_ctor()
373 hash->options = options; in php_hashcontext_ctor()
376 if (options & PHP_HASH_HMAC) { in php_hashcontext_ctor()
530 if (hash->options & PHP_HASH_HMAC) { in PHP_FUNCTION()
1150 newobj->options = oldobj->options; in php_hashcontext_clone()
1347 ZEND_ARG_INFO(0, options)
H A Dphp_hash.h55 zend_long options; member
/PHP-7.2/ext/iconv/tests/
H A Dbug48289.phpt8 $options = array(
15 echo iconv_mime_encode('Subject', $text, $options);
/PHP-7.2/ext/imap/
H A Dphp_imap.c106 ZEND_ARG_INFO(0, options)
114 ZEND_ARG_INFO(0, options)
122 ZEND_ARG_INFO(0, options)
179 ZEND_ARG_INFO(0, options)
189 ZEND_ARG_INFO(0, options)
196 ZEND_ARG_INFO(0, options)
203 ZEND_ARG_INFO(0, options)
1299 if (options) { in PHP_FUNCTION()
1300 flags = options; in PHP_FUNCTION()
1639 flags = options; in PHP_FUNCTION()
[all …]
/PHP-7.2/ext/imap/tests/
H A Dimap_append_basic.phpt9 …imap_append ( resource $imap_stream , string $mailbox , string $message [, string $options ] )
H A Dimap_body.phpt45 Warning: imap_body(): invalid value for the options parameter in %s on line %d
H A Dimap_body_basic.phpt9 /* Prototype : string imap_body ( resource $imap_stream , int $msg_number [, int $options ] )
H A Dimap_clearflag_full_basic.phpt9 …learflag_full ( resource $imap_stream , string $sequence , string $flag [, string $options ] )
H A Dimap_close_basic.phpt9 /* Prototype : bool imap_close(resource $stream_id [, int $options])
21 $options = CL_EXPUNGE;
30 var_dump( imap_close($stream_id, $options) );
H A Dimap_close_error.phpt9 /* Prototype : bool imap_close(resource $stream_id [, int $options])
28 $options = CL_EXPUNGE;
30 var_dump( imap_close($stream_id, $options, $extra_arg) );

Completed in 81 milliseconds

12345678910>>...20