Home
last modified time | relevance | path

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

12345678910>>...20

/PHP-7.2/ext/imap/tests/
H A Dimap_fetchbody_basic.phpt10 * [, int $options])
25 $options = array ('FT_UID' => FT_UID, 'FT_PEEK' => FT_PEEK, 'FT_INTERNAL' => FT_INTERNAL);
29 foreach ($options as $key => $option) {
H A Dimap_fetch_overview_basic.phpt9 /* Prototype : array imap_fetch_overview(resource $stream_id, int $msg_no [, int $options])
24 $options = FT_UID;
28 $a = imap_fetch_overview($stream_id, "$msg_no", $options) ;
H A Dimap_fetchheader_basic.phpt9 /* Prototype : string imap_fetchheader(resource $stream_id, int $msg_no [, int $options])
20 $options = array('FT_UID' => FT_UID, 'FT_INTERNAL' => FT_INTERNAL,
25 foreach ($options as $key => $option) {
/PHP-7.2/ext/soap/tests/bugs/
H A Dbug37278.phpt7 $options = array(
12 $client = new SoapClient(null, $options);
H A Dbug29795.phpt11 function __construct($wsdl, $options) {
12 parent::__construct($wsdl, $options);
H A Dbug55323.phpt13 function __construct($wsdl, $options) {
14 parent::__construct($wsdl, $options);
/PHP-7.2/ext/fileinfo/tests/
H A Dfinfo_set_flags_basic-mb.phpt7 /* Prototype : bool finfo_set_flags(resource finfo, int options)
8 * Description: Set libmagic configuration options.
H A Dfinfo_set_flags_basic.phpt7 /* Prototype : bool finfo_set_flags(resource finfo, int options)
8 * Description: Set libmagic configuration options.
H A Dfinfo_open_basic.phpt7 /* Prototype : resource finfo_open([int options [, string arg]])
17 // Calling finfo_open() with different options
/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/scripts/
H A Dphp-config.in62 --configure-options)
83 --configure-options [$configure_options]
/PHP-7.2/ext/soap/tests/
H A Dtypemap012.phpt26 $options=Array(
33 $client = new TestSoapClient(dirname(__FILE__)."/classmap.wsdl",$options);
H A Dclassmap002.phpt29 $options=Array(
34 $client = new TestSoapClient(dirname(__FILE__)."/classmap.wsdl",$options);
/PHP-7.2/ext/zip/tests/
H A Doo_addglob.phpt27 $options = array('add_path' => 'baz/', 'remove_all_path' => TRUE);
28 if (!$zip->addGlob($dirname . '*.{txt,baz}', GLOB_BRACE, $options)) {
H A Doo_addpattern.phpt27 $options = array('add_path' => 'baz/', 'remove_path' => $dir);
28 if (!$zip->addPattern('/\.txt$/', $dir, $options)) {
/PHP-7.2/Zend/
H A Dzend_builtin_functions.h28 ZEND_API void zend_fetch_debug_backtrace(zval *return_value, int skip_last, int options, int limit);
/PHP-7.2/ext/standard/tests/mail/
H A Dmail_skipif.inc18 $options = OP_HALFOPEN; // this should be enough to verify server present
21 $mbox = imap_open($mailbox, $username, $password, $options, $retries);
/PHP-7.2/ext/json/
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 Dphp_json_encoder.h38 int php_json_encode_zval(smart_str *buf, zval *val, int options, php_json_encoder *encoder);
/PHP-7.2/main/streams/
H A Duserspace.c56 int options, zend_string **opened_path, php_stream_context *context STREAMS_DC);
346 php_stream_wrapper_log_error(wrapper, options, "infinite recursion prevented"); in user_wrapper_opener()
357 (options & STREAM_OPEN_FOR_INCLUDE) && in user_wrapper_opener()
376 ZVAL_LONG(&args[2], options); in user_wrapper_opener()
429 int options, zend_string **opened_path, php_stream_context *context STREAMS_DC) in user_wrapper_opendir() argument
457 ZVAL_LONG(&args[1], options); in user_wrapper_opendir()
1142 int options, php_stream_context *context) in user_wrapper_rename() argument
1188 int options, php_stream_context *context) in user_wrapper_mkdir() argument
1206 ZVAL_LONG(&args[2], options); in user_wrapper_mkdir()
1236 int options, php_stream_context *context) in user_wrapper_rmdir() argument
[all …]
/PHP-7.2/ext/pdo/
H A Dphp_pdo_driver.h206 static inline zend_long pdo_attr_lval(zval *options, enum pdo_attribute_type option_name, zend_long… in pdo_attr_lval() argument
210 if (options && (v = zend_hash_index_find(Z_ARRVAL_P(options), option_name))) { in pdo_attr_lval()
215 static inline zend_string *pdo_attr_strval(zval *options, enum pdo_attribute_type option_name, zend… in pdo_attr_strval() argument
219 if (options && (v = zend_hash_index_find(Z_ARRVAL_P(options), option_name))) { in pdo_attr_strval()
/PHP-7.2/ext/standard/tests/assert/
H A Dassert_variation.phpt2 assert() - variation - test callback options using ini_get/ini_set/assert_options
58 echo "Reset callback options to use a class method \n";
65 echo "Reset callback options to use an object method \n";
106 Reset callback options to use a class method
123 Reset callback options to use an object method
/PHP-7.2/ext/zlib/
H A Dzlib.c759 if (options && (option_buffer = zend_hash_str_find(options, ZEND_STRL("dictionary"))) != NULL) { in zlib_create_dictionary_string()
837 HashTable *options = NULL; in PHP_FUNCTION() local
844 if (options && (option_buffer = zend_hash_str_find(options, ZEND_STRL("window"))) != NULL) { in PHP_FUNCTION()
852 if (!zlib_create_dictionary_string(options, &dict, &dictlen)) { in PHP_FUNCTION()
1073 HashTable *options = NULL; in PHP_FUNCTION() local
1080 if (options && (option_buffer = zend_hash_str_find(options, ZEND_STRL("level"))) != NULL) { in PHP_FUNCTION()
1088 if (options && (option_buffer = zend_hash_str_find(options, ZEND_STRL("memory"))) != NULL) { in PHP_FUNCTION()
1096 if (options && (option_buffer = zend_hash_str_find(options, ZEND_STRL("window"))) != NULL) { in PHP_FUNCTION()
1104 if (options && (option_buffer = zend_hash_str_find(options, ZEND_STRL("strategy"))) != NULL) { in PHP_FUNCTION()
1119 if (!zlib_create_dictionary_string(options, &dict, &dictlen)) { in PHP_FUNCTION()
[all …]
/PHP-7.2/ext/standard/tests/streams/
H A Dproc_open_bug60120.phpt16 $options = array_merge(array('suppress_errors' => true, 'binary_pipes' => true, 'bypass_shell' => f…
17 $process = proc_open($cmd, $descriptors, $pipes, getcwd(), array(), $options);
H A Dproc_open_bug64438.phpt16 $options = array_merge(array('suppress_errors' => true, 'binary_pipes' => true, 'bypass_shell' => f…
17 $process = proc_open($cmd, $descriptors, $pipes, getcwd(), array(), $options);

Completed in 81 milliseconds

12345678910>>...20