Home
last modified time | relevance | path

Searched refs:option (Results 26 – 50 of 223) sorted by relevance

123456789

/PHP-7.4/ext/standard/tests/file/
H A Duserstreams_007.phpt2 User-space streams: test metadata option
9 public function stream_metadata($path, $option, $var) {
10 echo "metadata: $path, $option\n";
/PHP-7.4/Zend/tests/
H A Dargument_restriction_001.phpt6 …public function &test($foo, array $bar, $option = NULL, $extra = "llllllllllllllllllllllllllllllll…
16 … & Sub::test() should be compatible with & Base::test($foo, array $bar, $option = NULL, $extra = '…
H A Dargument_restriction_002.phpt6 …public function test($foo, array &$bar, $option = NULL, $extra = 3.1415926535897932384626433832795…
16 …o, array &$bar) should be compatible with Base::test($foo, array &$bar, $option = NULL, $extra = 3…
H A Dargument_restriction_003.phpt9 …public function test(Foo $foo, array $bar, $option = NULL, $extra = "lllllllllllllllllllllllllllll…
19 … Sub::test() should be compatible with Base::test(Foo $foo, array $bar, $option = NULL, $extra = '…
/PHP-7.4/ext/curl/tests/
H A Dbug54798-unix.phpt50 foreach($options_to_check as $option) {
51 checkForClosedFilePointer($host, constant($option), $option);
H A Dbug54798.phpt47 foreach($options_to_check as $option) {
48 checkForClosedFilePointer($host, constant($option), $option);
H A Dbug46711.phpt20 foreach( $opt as $option => $value ) {
21 curl_setopt( $ch, $option, $value );
H A Dcurl_basic_011.phpt9 /* Prototype : bool curl_setopt(resource ch, int option, mixed value)
10 * Description: Set an option for a cURL transfer
H A Dcurl_basic_012.phpt9 /* Prototype : bool curl_setopt(resource ch, int option, mixed value)
10 * Description: Set an option for a cURL transfer
/PHP-7.4/ext/mbstring/
H A Dphp_mbregex.c47 onig_match(re, str, end, at, region, option)
494 if ((option & ONIG_OPTION_IGNORECASE) != 0) { in _php_mb_regex_get_option_string()
502 if ((option & ONIG_OPTION_EXTEND) != 0) { in _php_mb_regex_get_option_string()
658 if (option != NULL) *option|=optm; in _php_mb_regex_init_options()
1370 OnigOptionType option = 0; in PHP_FUNCTION() local
1387 option |= MBREX(regex_default_options); in PHP_FUNCTION()
1429 OnigOptionType option = 0; in _php_mb_regex_ereg_search_exec() local
1440 option |= MBREX(regex_default_options); in _php_mb_regex_ereg_search_exec()
1568 OnigOptionType option; in PHP_FUNCTION() local
1579 option = MBREX(regex_default_options); in PHP_FUNCTION()
[all …]
/PHP-7.4/ext/standard/tests/general_functions/
H A Dget_cfg_var_variation8.phpt2 Test function get_cfg_var() by calling deprecated option
12 echo "*** Test by calling method or function with deprecated option ***\n";
/PHP-7.4/ext/ldap/tests/
H A Dldap_get_option_package_basic.phpt2 ldap_get_option() - Basic test for getting the TLS package ldap option
14 // This is a read-only option.
/PHP-7.4/ext/imap/tests/
H A Dimap_fetchbody_basic.phpt29 foreach ($options as $key => $option) {
35 var_dump( imap_fetchbody($stream_id, $msg_uid, $section, $option) );
39 var_dump( imap_fetchbody($stream_id, $msg_no, $section, $option) );
46 var_dump( imap_fetchbody($stream_id, $msg_no, $section, $option) );
/PHP-7.4/ext/standard/tests/password/
H A Dpassword_deprecated_salts.phpt15 Deprecated: password_hash(): Use of the 'salt' option to password_hash is deprecated in %s on line …
18 Deprecated: password_hash(): Use of the 'salt' option to password_hash is deprecated in %s on line …
H A Dpassword_bcrypt_errors.phpt27 Deprecated: password_hash(): Use of the 'salt' option to password_hash is deprecated in %s on line …
32 Deprecated: password_hash(): Use of the 'salt' option to password_hash is deprecated in %s on line …
37 Deprecated: password_hash(): Use of the 'salt' option to password_hash is deprecated in %s on line …
/PHP-7.4/ext/fileinfo/tests/
H A Dfinfo_buffer_basic-mb.phpt31 foreach( $options as $option ) {
32 $finfo = finfo_open( $option, $magicFile );
34 var_dump( finfo_buffer( $finfo, $string, $option ) );
H A Dfinfo_buffer_basic.phpt31 foreach( $options as $option ) {
32 $finfo = finfo_open( $option, $magicFile );
34 var_dump( finfo_buffer( $finfo, $string, $option ) );
H A Dfinfo_buffer_variation1-mb.phpt31 foreach( $options as $option ) {
32 $finfo = new finfo( $option, $magicFile );
34 var_dump( $finfo->buffer( $string, $option ) );
H A Dfinfo_buffer_variation1.phpt31 foreach( $options as $option ) {
32 $finfo = new finfo( $option, $magicFile );
34 var_dump( $finfo->buffer( $string, $option ) );
/PHP-7.4/ext/standard/tests/ini_info/
H A Dphp_ini_scanned_files.phpt9 // Empty env value disables any config option
13 // Env value without path separator overrides any config option
/PHP-7.4/ext/curl/
H A Dshare.c72 static int _php_curl_share_setopt(php_curlsh *sh, zend_long option, zval *zvalue, zval *return_valu… in _php_curl_share_setopt() argument
76 switch (option) { in _php_curl_share_setopt()
79 error = curl_share_setopt(sh->share, option, zval_get_long(zvalue)); in _php_curl_share_setopt()
/PHP-7.4/sapi/cgi/tests/
H A Dbug78323.phpt12 // no argument for option
36 Error in argument 1, char 1: no argument for option -
/PHP-7.4/ext/pdo_mysql/tests/
H A Dpdo_mysql___construct_options.phpt13 function set_option_and_check($offset, $option, $value, $option_desc) {
20 $db = new PDO($dsn, $user, $pass, array($option => $value));
21 if (!is_object($db) || ($value !== ($tmp = @$db->getAttribute($option))))
59 /* TODO - why is this a valid option if getAttribute() does not support it?! */
84 foreach ($valid_options as $option => $name) {
86 $tmp = @$db->getAttribute($option);
87 if ($tmp !== $defaults[$option])
89 $name, $defaults[$option], gettype($defaults[$option]),
/PHP-7.4/ext/filter/
H A Dfilter.c599 zval *option; in php_filter_call() local
617 filter = zval_get_long(option); in php_filter_call()
620 …if ((option = zend_hash_str_find(Z_ARRVAL_P(filter_args), "flags", sizeof("flags") - 1)) != NULL) { in php_filter_call()
621 filter_flags = zval_get_long(option); in php_filter_call()
630 if (Z_TYPE_P(option) == IS_ARRAY) { in php_filter_call()
631 options = option; in php_filter_call()
634 options = option; in php_filter_call()
738 zval *option, *opt, *def; in PHP_FUNCTION() local
743 filter_flags = zval_get_long(option); in PHP_FUNCTION()
815 zval *option; in PHP_FUNCTION() local
[all …]
/PHP-7.4/ext/sockets/tests/
H A Dsocket_set_option_error_socket_option.phpt2 Test if socket_set_option() returns 'unable to set socket option' failure for invalid options
31 Warning: socket_set_option(): unable to set socket option [%d]: Permission denied in %s on line %d

Completed in 30 milliseconds

123456789