Home
last modified time | relevance | path

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

12345678910>>...20

/PHP-7.2/ext/soap/tests/bugs/
H A Dbug31695.phpt14 function __construct($wsdl, $options=array()) {
15 parent::__construct($wsdl, $options);
16 $this->server = new SoapServer($wsdl, $options);
H A Dbug29839.phpt16 function __construct($wsdl, $options) {
17 parent::__construct($wsdl, $options);
18 $this->server = new SoapServer($wsdl, $options);
H A Dbug32776.phpt19 function __construct($wsdl, $options) {
20 parent::__construct($wsdl, $options);
21 $this->server = new SoapServer($wsdl, $options);
H A Dbug34453.phpt16 function __construct($wsdl, $options) {
17 parent::__construct($wsdl, $options);
18 $this->server = new SoapServer($wsdl, $options);
H A Dbug43045.phpt12 function __construct($wsdl, $options) {
13 parent::__construct($wsdl, $options);
14 $this->server = new SoapServer($wsdl, $options);
/PHP-7.2/ext/pcre/pcrelib/testdata/
H A Dtestinput229 In 16-bit mode with options: S8>testdata/saved16LE-2
11 In 32-bit mode with options: S8>testdata/saved32LE-2
H A Dtestoutput216 No options
22 No options
56 No options
62 No options
68 No options
74 No options
155 No options
161 No options
167 No options
177 No options
[all …]
/PHP-7.2/ext/imap/tests/
H A Dskipif.inc8 $options = OP_HALFOPEN; // this should be enough to verify server present
11 $mbox = @imap_open($mailbox, $username, $password, $options, $retries);
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) );
/PHP-7.2/ext/zlib/
H A Dzlib_fopen_wrapper.c113 …am *php_stream_gzopen(php_stream_wrapper *wrapper, const char *path, const char *mode, int options, in php_stream_gzopen() argument
121 if (options & REPORT_ERRORS) { in php_stream_gzopen()
133 …innerstream = php_stream_open_wrapper_ex(path, mode, STREAM_MUST_SEEK | options | STREAM_WILL_CAST… in php_stream_gzopen()
154 if (options & REPORT_ERRORS) { in php_stream_gzopen()
/PHP-7.2/scripts/dev/generate-phpt/src/setup/
H A DgtOptionalSections.php17 $options = explode(':', $commandLineOptions->getOption('s'));
19 foreach($options as $option) {
/PHP-7.2/ext/standard/tests/http/
H A Dbug76342.phpt12 $options = [
18 $ctx = stream_context_create($options);
H A Dbug65634.phpt12 $options = [
19 $options['http']['header'] = "Connection: $connection";
22 $ctx = stream_context_create($options);
/PHP-7.2/ext/fileinfo/tests/
H A Dbug57547.phpt2 Bug #57547 Settings options on file doesn't give same result as constructor options
H A Dfinfo_buffer_basic-mb.phpt7 /* Prototype : string finfo_buffer(resource finfo, char *string [, int options [, resource context…
15 $options = array(
31 foreach( $options as $option ) {
H A Dfinfo_buffer_basic.phpt7 /* Prototype : string finfo_buffer(resource finfo, char *string [, int options [, resource context…
15 $options = array(
31 foreach( $options as $option ) {
H A Dfinfo_buffer_variation1-mb.phpt7 /* Prototype : string finfo_buffer(resource finfo, char *string [, int options [, resource context…
15 $options = array(
31 foreach( $options as $option ) {
H A Dfinfo_buffer_variation1.phpt7 /* Prototype : string finfo_buffer(resource finfo, char *string [, int options [, resource context…
15 $options = array(
31 foreach( $options as $option ) {
/PHP-7.2/ext/filter/tests/
H A D045.phpt7 $a = array("flags"=>(string)FILTER_FLAG_ALLOW_HEX, "options" => array("min_range"=>"0", "max_range"…
9 echo ($ret === 255 && $a["options"]["min_range"] === "0")?"ok\n":"bug\n";
10 echo ($ret === 255 && $a["options"]["max_range"] === "1024")?"ok\n":"bug\n";
/PHP-7.2/ext/pdo_mysql/tests/
H A Dbug_50323.phpt29 $options = $old_options;
31 $options[$k] = $v;
34 foreach ($options as $k => $v)
/PHP-7.2/ext/curl/
H A Dshare.c104 zend_long options; in PHP_FUNCTION() local
109 Z_PARAM_LONG(options) in PHP_FUNCTION()
117 if (!_php_curl_share_setopt(sh, options, zvalue, return_value)) { in PHP_FUNCTION()
/PHP-7.2/ext/pcre/pcrelib/
H A Dpcre_study.c84 const pcre_uchar *startcode, int options, recurse_check *recurses, in find_minlength() argument
89 BOOL utf = (options & PCRE_UTF8) != 0; in find_minlength()
390 if ((options & PCRE_JAVASCRIPT_COMPAT) == 0) in find_minlength()
436 if ((options & PCRE_JAVASCRIPT_COMPAT) == 0) in find_minlength()
1493 if ((options & ~PUBLIC_STUDY_OPTIONS) != 0) in pcre_study()
1506 if ((re->options & PCRE_ANCHORED) == 0 && in pcre_study()
1565 if (bits_set || min > 0 || (options & ( in pcre_study()
1629 if ((options & PCRE_STUDY_JIT_COMPILE) != 0) in pcre_study()
1631 if ((options & PCRE_STUDY_JIT_PARTIAL_SOFT_COMPILE) != 0) in pcre_study()
1633 if ((options & PCRE_STUDY_JIT_PARTIAL_HARD_COMPILE) != 0) in pcre_study()
[all …]
/PHP-7.2/ext/mysqli/tests/
H A Dbug50772.phpt14 $db1->options(MYSQLI_OPT_CONNECT_TIMEOUT, 3);
24 $db2->options(MYSQLI_OPT_CONNECT_TIMEOUT, 3);
/PHP-7.2/ext/iconv/tests/
H A Dbug48289.phpt8 $options = array(
15 echo iconv_mime_encode('Subject', $text, $options);
/PHP-7.2/main/streams/
H A Dphp_stream_transport.h31 const char *persistent_id, int options, int flags,
49 PHPAPI php_stream *_php_stream_xport_create(const char *name, size_t namelen, int options,
57 #define php_stream_xport_create(name, namelen, options, flags, persistent_id, timeout, context, est… argument
58 …_php_stream_xport_create(name, namelen, options, flags, persistent_id, timeout, context, estr, eco…

Completed in 57 milliseconds

12345678910>>...20