Home
last modified time | relevance | path

Searched refs:options (Results 251 – 275 of 427) sorted by relevance

1...<<1112131415161718

/PHP-7.4/ext/soap/
H A Dphp_http.c1001 char *options = cookie + cookie_len+1; in make_http_soap_request() local
1002 while (*options) { in make_http_soap_request()
1003 while (*options == ' ') {options++;} in make_http_soap_request()
1004 sempos = strstr(options, ";"); in make_http_soap_request()
1005 if (strstr(options,"path=") == options) { in make_http_soap_request()
1006 eqpos = options + sizeof("path=")-1; in make_http_soap_request()
1008 } else if (strstr(options,"domain=") == options) { in make_http_soap_request()
1009 eqpos = options + sizeof("domain=")-1; in make_http_soap_request()
1011 } else if (strstr(options,"secure") == options) { in make_http_soap_request()
1015 options = sempos+1; in make_http_soap_request()
/PHP-7.4/ext/pcre/
H A Dphp_pcre.c1179 uint32_t options; /* Execution options */ in php_pcre_match_impl() local
1289 options = in php_pcre_match_impl()
1301 options, match_data, mctx); in php_pcre_match_impl()
1617 uint32_t options; /* Execution options */ in php_pcre_replace_impl() local
1669 options, match_data, mctx); in php_pcre_replace_impl()
1857 uint32_t options; /* Execution options */ in php_pcre_replace_func_impl() local
1925 options, match_data, mctx); in php_pcre_replace_func_impl()
2538 uint32_t options; /* Execution options */ in php_pcre_split_impl() local
2593 options, match_data, mctx); in php_pcre_split_impl()
2897 uint32_t options; /* Execution options */ in php_pcre_grep_impl() local
[all …]
/PHP-7.4/ext/tidy/
H A Dtidy.c1253 zval *options = NULL; in PHP_FUNCTION() local
1268 TIDY_APPLY_CONFIG_ZVAL(obj->ptdoc->doc, options); in PHP_FUNCTION()
1314 zval *options = NULL; in PHP_FUNCTION() local
1319 &options, &enc, &enc_len, &use_include_path) == FAILURE) { in PHP_FUNCTION()
1336 TIDY_APPLY_CONFIG_ZVAL(obj->ptdoc->doc, options); in PHP_FUNCTION()
1634 zval *options = NULL; in TIDY_DOC_METHOD() local
1658 TIDY_APPLY_CONFIG_ZVAL(obj->ptdoc->doc, options); in TIDY_DOC_METHOD()
1671 zval *options = NULL; in TIDY_DOC_METHOD() local
1694 TIDY_APPLY_CONFIG_ZVAL(obj->ptdoc->doc, options); in TIDY_DOC_METHOD()
1709 zval *options = NULL; in TIDY_DOC_METHOD() local
[all …]
/PHP-7.4/Zend/tests/
H A Dbug38779_1.phpt9 public function stream_open($path, $mode, $options, &$opened_path) {
/PHP-7.4/ext/imap/tests/
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 Dimap_body_basic.phpt9 /* Prototype : string imap_body ( resource $imap_stream , int $msg_number [, int $options ] )
H A Dimap_fetchbody_variation5.phpt10 * [, int options])
H A Dimap_body.phpt45 Warning: imap_body(): invalid value for the options parameter in %s on line %d
H A Dimap_close_variation3.phpt9 /* Prototype : bool imap_close(resource $stream_id [, int $options])
H A Dimap_fetch_overview_variation4.phpt9 /* Prototype : array imap_fetch_overview(resource $stream_id, int $msg_no [, int $options])
H A Dimap_fetchheader_variation4.phpt9 /* Prototype : string imap_fetchheader(resource $stream_id, int $msg_no [, int $options])
/PHP-7.4/ext/libxml/tests/
H A Dbug61367-write.phpt17 public function stream_open ( $path , $mode , $options , &$opened_path ) {
H A D004.phpt30 Warning: stream_context_create(): options should have the form ["wrappername"]["optionname"] = $val…
/PHP-7.4/ext/mysqli/tests/
H A Dbug74779.phpt22 if (!$link->options(MYSQLI_OPT_INT_AND_FLOAT_NATIVE, true)) {
H A Dmysqli_expire_password.phpt79 $link->options(MYSQLI_OPT_CAN_HANDLE_EXPIRED_PASSWORDS, 0);
90 $link->options(MYSQLI_OPT_CAN_HANDLE_EXPIRED_PASSWORDS, 1);
102 $link->options(MYSQLI_OPT_CAN_HANDLE_EXPIRED_PASSWORDS, 1);
/PHP-7.4/main/streams/
H A Dglob_wrapper.c200 int options, zend_string **opened_path, php_stream_context *context STREAMS_DC) in php_glob_stream_opener() argument
213 if (((options & STREAM_DISABLE_OPEN_BASEDIR) == 0) && php_check_open_basedir(path)) { in php_glob_stream_opener()
/PHP-7.4/sapi/cgi/tests/
H A D002.phpt2 defining INI options with -d
/PHP-7.4/ext/standard/
H A Dhead.c189 static void php_head_parse_cookie_options_array(zval *options, zend_long *expires, zend_string **pa… in php_head_parse_cookie_options_array() argument
194 ZEND_HASH_FOREACH_STR_KEY_VAL(Z_ARRVAL_P(options), key, value) { in php_head_parse_cookie_options_array()
223 if (found == 0 && zend_hash_num_elements(Z_ARRVAL_P(options)) > 0) { in php_head_parse_cookie_options_array()
/PHP-7.4/ext/standard/tests/file/
H A Dbug27508.phpt8 function stream_open($path, $mode, $options, &$opened_path)
H A Dinclude_userstream_001.phpt12 function stream_open($path, $mode, $options, &$opened_path)
/PHP-7.4/ext/date/tests/
H A Dgmdate_variation11.phpt2 Test gmdate() function : usage variation - Passing Full Date/Time format options to format argument.
/PHP-7.4/ext/openssl/tests/
H A Dopenssl_csr_new_basic.phpt21 // options type check
/PHP-7.4/ext/soap/tests/
H A Dbug47021.phpt54 $options = [
71 $client = new BugSoapClient('http://127.0.0.1:12342/', $options);
/PHP-7.4/ext/intl/tests/
H A Dcollation_customization.phpt9 * Check effects of changing misc collattion options.

Completed in 52 milliseconds

1...<<1112131415161718