Home
last modified time | relevance | path

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

12345678910>>...17

/PHP-5.4/ext/pdo_mysql/tests/
H A Dbug_50323.phpt29 $options = $old_options;
31 $options[$k] = $v;
34 foreach ($options as $k => $v)
/PHP-5.4/ext/soap/tests/bugs/
H A Dbug34453.phpt16 function __construct($wsdl, $options) {
17 parent::__construct($wsdl, $options);
18 $this->server = new SoapServer($wsdl, $options);
/PHP-5.4/ext/standard/tests/file/
H A Dinclude_streams.phpt15 public $options;
28 function stream_open($path, $mode, $options, &$opened_path)
32 $this->options = $options;
H A Duserwrapper.phpt14 function mkdir($directory, $mode, $options) {
15 …printf("Making directory: %s as %o%s\n", $directory, $mode, $options & STREAM_MKDIR_RECURSIVE ? " …
18 function rmdir($directory, $options) {
22 function url_stat($path, $options) {
/PHP-5.4/ext/pcre/pcrelib/
H A Dpcredemo.c298 int options = 0; /* Normally no options */ in main() local
308 options = PCRE_NOTEMPTY_ATSTART | PCRE_ANCHORED; in main()
319 options, /* options */ in main()
338 if (options == 0) break; /* All matches found */ in main()
H A Dpcre_compile.c4197 if ((options & PCRE_CASELESS) != 0) in add_to_class()
4200 if ((options & PCRE_UTF8) != 0) in add_to_class()
4250 if ((options & PCRE_UTF8) == 0) in add_to_class()
4256 if ((options & PCRE_UTF16) == 0) in add_to_class()
6623 newoptions = options; in compile_branch()
9041 options = (options & ~PCRE_NEWLINE_BITS) | newnl; in pcre_compile2()
9043 options = (options & ~(PCRE_BSR_ANYCRLF|PCRE_BSR_UNICODE)) | newbsr; in pcre_compile2()
9048 utf = (options & PCRE_UTF8) != 0; in pcre_compile2()
9084 if ((options & PCRE_UCP) != 0) in pcre_compile2()
9181 cd->external_options = options; in pcre_compile2()
[all …]
/PHP-5.4/ext/mysqli/tests/
H A Dbug50772.phpt14 $db1->options(MYSQLI_OPT_CONNECT_TIMEOUT, 3);
24 $db2->options(MYSQLI_OPT_CONNECT_TIMEOUT, 3);
/PHP-5.4/ext/json/
H A Dphp_json.h51 PHP_JSON_API void php_json_encode(smart_str *buf, zval *val, int options TSRMLS_DC);
52 PHP_JSON_API void php_json_decode_ex(zval *return_value, char *str, int str_len, int options, long …
/PHP-5.4/ext/iconv/tests/
H A Dbug48289.phpt8 $options = array(
15 echo iconv_mime_encode('Subject', $text, $options);
/PHP-5.4/ext/soap/tests/
H A Dany.phpt32 function __construct($wsdl, $options) {
33 parent::__construct($wsdl, $options);
34 $this->server = new SoapServer($wsdl, $options);
/PHP-5.4/ext/mbstring/oniguruma/
H A Donigposix.h120 OnigOptionType options; /* default option */ member
154 ONIG_EXTERN int regcomp P_((regex_t* reg, const char* pat, int options));
155 …nt regexec P_((regex_t* reg, const char* str, size_t nmatch, regmatch_t* matches, int options));
/PHP-5.4/ext/imap/tests/
H A Dimap_fetchheader_error.phpt9 /* Prototype : string imap_fetchheader(resource $stream_id, int $msg_no [, int $options])
26 $options = 10;
28 var_dump( imap_fetchheader($stream_id, $msg_no, $options, $extra_arg) );
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_fetch_overview_error.phpt9 /* Prototype : array imap_fetch_overview(resource $stream_id, int $msg_no [, int $options])
27 $options = FT_UID;
29 var_dump( imap_fetch_overview($stream_id, $msg_no, $options, $extra_arg) );
H A Dimap_fetchbody_error.phpt10 * [, int $options])
28 $options = FT_PEEK;
31 var_dump( imap_fetchbody($stream_id, $msg_no, $section, $options, $extra_arg) );
/PHP-5.4/ext/filter/tests/
H A D033_run.inc25 …foreach($data as $k=>$d) $result[$k] = filter_var($d,filter_id($filter),array("options"=>array("re…
27 foreach($data as $k=>$d) $result[$k] = filter_var($d,filter_id($filter),array("options"=>"test"));
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…
/PHP-5.4/sapi/cli/tests/
H A D015.phpt2 CLI long options
34 Usage: %s [options] [-f] <file> [--] [args...]
/PHP-5.4/ext/standard/tests/http/
H A Dbug67430.phpt12 $options = [
19 $ctx = stream_context_create($options);
/PHP-5.4/ext/fileinfo/tests/
H A Dfinfo_open_variation1.phpt7 /* Prototype : resource finfo_open([int options [, string arg]])
17 // Calling finfo_open() with different options
/PHP-5.4/ext/curl/tests/
H A Dcurl_copy_handle_variation1.phpt2 Test curl_copy_handle() change options in one handle
17 // set URL and other appropriate options
/PHP-5.4/ext/pdo/tests/
H A Dbug61292.phpt26 $options = array(PDO::ATTR_PERSISTENT => TRUE);
28 parent::__construct($dsn, $user, $pass, $options);
/PHP-5.4/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";
99 Reset callback options to use a class method
114 Reset callback options to use an object method
/PHP-5.4/ext/pdo/
H A Dphp_pdo_driver.h195 static inline long pdo_attr_lval(zval *options, enum pdo_attribute_type option_name, long defval TS… in pdo_attr_lval() argument
199 if (options && SUCCESS == zend_hash_index_find(Z_ARRVAL_P(options), option_name, (void**)&v)) { in pdo_attr_lval()
205 static inline char *pdo_attr_strval(zval *options, enum pdo_attribute_type option_name, char *defva… in pdo_attr_strval() argument
209 if (options && SUCCESS == zend_hash_index_find(Z_ARRVAL_P(options), option_name, (void**)&v)) { in pdo_attr_strval()
/PHP-5.4/
H A Dphp5.spec.in35 # figure out configure options options based on what packages are installed
37 # extra options, use the OPTIONS environment variable.

Completed in 54 milliseconds

12345678910>>...17