Home
last modified time | relevance | path

Searched refs:options (Results 101 – 125 of 437) sorted by relevance

12345678910>>...18

/PHP-5.5/ext/imap/tests/
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_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_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) {
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) ;
/PHP-5.5/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.5/ext/filter/tests/
H A D033_run.inc26 …foreach($data as $k=>$d) $result[$k] = filter_var($d,filter_id($filter),array("options"=>array("re…
28 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.5/ext/mbstring/oniguruma/
H A Dregsyntax.c257 onig_set_syntax_options(OnigSyntaxType* syntax, OnigOptionType options) in onig_set_syntax_options() argument
259 syntax->options = options; in onig_set_syntax_options()
283 return syntax->options; in onig_get_syntax_options()
/PHP-5.5/
H A Dphp5.spec.in35 # figure out configure options options based on what packages are installed
37 # extra options, use the OPTIONS environment variable.
/PHP-5.5/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.5/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-5.5/ext/soap/tests/
H A Dtypemap012.phpt26 $options=Array(
33 $client = new TestSoapClient(dirname(__FILE__)."/classmap.wsdl",$options);
/PHP-5.5/scripts/
H A Dphp-config.in62 --configure-options)
83 --configure-options [$configure_options]
/PHP-5.5/ext/fileinfo/tests/
H A Dfinfo_set_flags_basic.phpt7 /* Prototype : bool finfo_set_flags(resource finfo, int options)
8 * Description: Set libmagic configuration options.
/PHP-5.5/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-5.5/ext/standard/
H A Dstreamsfuncs.c1031 RETURN_ZVAL(context->options, 1, 0); in PHP_FUNCTION()
1048 "ra", &zcontext, &options) == FAILURE) { in PHP_FUNCTION()
1061 if (options) { in PHP_FUNCTION()
1096 zval *zcontext, *options; in PHP_FUNCTION() local
1114 ALLOC_INIT_ZVAL(options); in PHP_FUNCTION()
1115 ZVAL_ZVAL(options, context->options, 1, 0); in PHP_FUNCTION()
1148 zval *options = NULL; in PHP_FUNCTION() local
1160 parse_context_options(context, options TSRMLS_CC); in PHP_FUNCTION()
1170 zval *options = NULL, *params = NULL; in PHP_FUNCTION() local
1179 if (options) { in PHP_FUNCTION()
[all …]
/PHP-5.5/ext/mysqlnd/
H A Dmysqlnd_auth.c39 const MYSQLND_OPTIONS * const options, in mysqlnd_auth_handshake() argument
86 auth_packet->max_packet_size = options->max_allowed_packet; in mysqlnd_auth_handshake()
87 if (options->charset_name && (charset = mysqlnd_find_charset_name(options->charset_name))) { in mysqlnd_auth_handshake()
103 auth_packet->connect_attr = conn->options->connect_attr; in mysqlnd_auth_handshake()
362 const MYSQLND_OPTIONS * const options, in mysqlnd_native_auth_get_auth_data() argument
422 const MYSQLND_OPTIONS * const options, in mysqlnd_pam_auth_get_auth_data() argument
483 const MYSQLND_OPTIONS * const options, in mysqlnd_sha256_get_rsa_key() argument
575 const MYSQLND_OPTIONS * const options, in mysqlnd_sha256_auth_get_auth_data() argument
594 server_public_key = mysqlnd_sha256_get_rsa_key(conn, options, net_options TSRMLS_CC); in mysqlnd_sha256_auth_get_auth_data()
/PHP-5.5/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-5.5/ext/dom/
H A Ddocument.c122 ZEND_ARG_INFO(0, options)
131 ZEND_ARG_INFO(0, options)
147 ZEND_ARG_INFO(0, options)
152 ZEND_ARG_INFO(0, options)
157 ZEND_ARG_INFO(0, options)
1635 options |= XML_PARSE_NOENT; in dom_document_parser()
1680 long options = 0; in dom_parse_document() local
1762 long options = 0; in PHP_FUNCTION() local
1808 long options = 0; in PHP_FUNCTION() local
2186 long options = 0; in dom_load_html() local
[all …]
/PHP-5.5/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-5.5/ext/pdo_mysql/tests/
H A Dpdo_mysql___construct_options.phpt2 MySQL PDO->__construct(), options
22 printf("[%03d] Execting '%s'/%s got '%s'/%s' for options '%s'\n",
80 printf("[003] [TODO][CHANGEREQUEST] Please, lets not ignore invalid options and bail out!\n");
84 /* TODO getAttribute() is pretty poor in supporting the options, suppress errors */
166 [003] [TODO][CHANGEREQUEST] Please, lets not ignore invalid options and bail out!
172 [021] Execting '1'/boolean got ''/boolean' for options 'PDO::MYSQL_ATTR_LOCAL_INFILE'
173 [023] Execting 'SET @a=1'/string got ''/boolean' for options 'PDO::MYSQL_ATTR_INIT_COMMAND'
/PHP-5.5/ext/ereg/regex/
H A Dmain.c48 copts = options('c', optarg);
51 eopts = options('e', optarg);
161 try(f[0], f[1], f[2], f[3], f[4], options('c', f[1]));
164 options('c', f[1]) &~ REG_EXTENDED);
254 if (options('e', f1)&REG_STARTEND) {
260 err = regexec(&re, f2copy, NSUBS, subs, options('e', f1));
315 options(type, s) in options() function
/PHP-5.5/ext/pcre/pcrelib/sljit/
H A DsljitNativeX86_32.c67 sljit_si options, sljit_si args, sljit_si scratches, sljit_si saveds, in sljit_emit_enter() argument
74 …CHECK(check_sljit_emit_enter(compiler, options, args, scratches, saveds, fscratches, fsaveds, loca… in sljit_emit_enter()
75 set_emit_enter(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size); in sljit_emit_enter()
143 if (options & SLJIT_DOUBLE_ALIGNMENT) { in sljit_emit_enter()
187 sljit_si options, sljit_si args, sljit_si scratches, sljit_si saveds, in sljit_set_context() argument
191 …CHECK(check_sljit_set_context(compiler, options, args, scratches, saveds, fscratches, fsaveds, loc… in sljit_set_context()
192 set_set_context(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size); in sljit_set_context()
200 if (options & SLJIT_DOUBLE_ALIGNMENT) in sljit_set_context()
225 if (compiler->options & SLJIT_DOUBLE_ALIGNMENT) { in sljit_emit_return()

Completed in 44 milliseconds

12345678910>>...18