Home
last modified time | relevance | path

Searched refs:option (Results 101 – 125 of 207) sorted by relevance

123456789

/PHP-5.5/ext/curl/tests/
H A Dcurl_write_file.phpt2 Test curl option CURLOPT_FILE
H A Dcurl_setopt_CURLOPT_READFUNCTION.phpt2 cURL option CURLOPT_READFUNCTION
H A Dcurl_copy_handle_variation2.phpt11 the only way to test if a option is setten on a curl handle is using the curl_getinfo() function.
/PHP-5.5/ext/oci8/tests/
H A Ddefault_prefetch.phpt2 oci8.default_prefetch ini option
H A Ddefault_prefetch0.phpt2 oci8.default_prefetch ini option
H A Ddefault_prefetch1.phpt2 oci8.default_prefetch ini option
H A Ddefault_prefetch2.phpt2 oci8.default_prefetch ini option
/PHP-5.5/ext/intl/tests/
H A Dcalendar_setSkipped_RepeatedWallTimeOption_error.phpt66 …::setSkippedWallTimeOption(): intlcal_set_skipped_wall_time_option: invalid option in %s on line %d
69 …setRepeatedWallTimeOption(): intlcal_set_repeated_wall_time_option: invalid option in %s on line %d
/PHP-5.5/ext/zip/
H A Dphp_zip.c351 zval **option; in php_zip_parse_options() local
354 if (Z_TYPE_PP(option) != IS_LONG) { in php_zip_parse_options()
355 zval tmp = **option; in php_zip_parse_options()
360 opt = Z_LVAL_PP(option); in php_zip_parse_options()
367 if (Z_TYPE_PP(option) != IS_STRING) { in php_zip_parse_options()
372 if (Z_STRLEN_PP(option) < 1) { in php_zip_parse_options()
383 *remove_path = Z_STRVAL_PP(option); in php_zip_parse_options()
387 if (Z_TYPE_PP(option) != IS_STRING) { in php_zip_parse_options()
392 if (Z_STRLEN_PP(option) < 1) { in php_zip_parse_options()
402 *add_path_len = Z_STRLEN_PP(option); in php_zip_parse_options()
[all …]
/PHP-5.5/ext/curl/
H A Dmulti.c385 static int _php_curl_multi_setopt(php_curlm *mh, long option, zval **zvalue, zval *return_value TSR… in _php_curl_multi_setopt() argument
389 switch (option) { in _php_curl_multi_setopt()
397 error = curl_multi_setopt(mh->multi, option, Z_LVAL_PP(zvalue)); in _php_curl_multi_setopt()
/PHP-5.5/sapi/litespeed/
H A DREADME20 usually, FastCGI PHP is not an option in shared hosting environment
54 start manually from command with option "-b <socket_address>", socket
162 process will wait for a new request before it exits. This option help
182 will be killed by the parent process. This option can help getting rid
190 This option help releasing system resources taken by an idle parent
202 When PHP started by "-b" option, it is disabled automatically.
/PHP-5.5/ext/ftp/
H A Dphp_ftp.c233 ZEND_ARG_INFO(0, option)
239 ZEND_ARG_INFO(0, option)
1370 long option; in PHP_FUNCTION() local
1373 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rlz", &z_ftp, &option, &z_value) == FAILURE)… in PHP_FUNCTION()
1379 switch (option) { in PHP_FUNCTION()
1403 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unknown option '%ld'", option); in PHP_FUNCTION()
1415 long option; in PHP_FUNCTION() local
1418 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rl", &z_ftp, &option) == FAILURE) { in PHP_FUNCTION()
1424 switch (option) { in PHP_FUNCTION()
1432 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unknown option '%ld'", option); in PHP_FUNCTION()
/PHP-5.5/scripts/dev/
H A Dgenerate-phpt.phar464 $option = substr($argv[$i], 1);
475 $this->options[$option] = true;
485 $this->options[$option] = $argv[$i];
492 public function getOption($option)
494 if (!isset($this->options[$option])) {
497 return $this->options[$option];
502 * Check whether an option exists
504 public function hasOption($option)
506 return isset($this->options[$option]);
698 foreach($options as $option) {
[all …]
/PHP-5.5/ext/mbstring/oniguruma/
H A Dregparse.c1375 NENCLOSE(node)->option = 0; in node_new_enclose()
1397 NENCLOSE(node)->option = option; in node_new_enclose_memory()
1407 NENCLOSE(node)->option = option; in node_new_option()
3721 if (IS_EXTEND(env->option)) { in fetch_token()
3733 if (IS_EXTEND(env->option)) in fetch_token()
4508 OnigOptionType option; in parse_enclose() local
4522 option = env->option; in parse_enclose()
4691 env->option = option; in parse_enclose()
4695 env->option = prev; in parse_enclose()
5062 env->option = NENCLOSE(*np)->option; in parse_exp()
[all …]
/PHP-5.5/ext/openssl/tests/
H A D004.phpt31 …ord_min -> 4 (failed; check error queue and value of string_mask OpenSSL option if illegal charact…
/PHP-5.5/ext/standard/tests/assert/
H A Dassert_error1.phpt26 //Unknown option for assert_options()
/PHP-5.5/sapi/cli/
H A DREADME17 * -r option which allows execution of PHP code directly from
/PHP-5.5/ext/xml/tests/
H A Dxml_parser_set_option_variation1.phpt11 /* Prototype : proto int xml_parser_set_option(resource parser, int option, mixed value)
26 $option = 10;
92 var_dump( xml_parser_set_option($value, $option, 1) );
H A Dxml_parser_get_option_variation1.phpt11 /* Prototype : proto int xml_parser_get_option(resource parser, int option)
26 $option = 10;
92 var_dump( xml_parser_get_option($value, $option) );
H A Dbug50576.phpt2 Bug #50576 (XML_OPTION_SKIP_TAGSTART option has no effect)
/PHP-5.5/main/streams/
H A Dxp_socket.c51 static int php_tcp_sockop_set_option(php_stream *stream, int option, int value, void *ptrparam TSRM…
268 static int php_sockop_set_option(php_stream *stream, int option, int value, void *ptrparam TSRMLS_D… in php_sockop_set_option() argument
274 switch(option) { in php_sockop_set_option()
746 static int php_tcp_sockop_set_option(php_stream *stream, int option, int value, void *ptrparam TSRM… in php_tcp_sockop_set_option() argument
751 switch(option) { in php_tcp_sockop_set_option()
774 return php_sockop_set_option(stream, option, value, ptrparam TSRMLS_CC); in php_tcp_sockop_set_option()
/PHP-5.5/ext/standard/
H A Dfilestat.c438 int option; in php_do_chgrp() local
441 option = PHP_STREAM_META_GROUP; in php_do_chgrp()
444 option = PHP_STREAM_META_GROUP_NAME; in php_do_chgrp()
450 if(wrapper->wops->stream_metadata(wrapper, filename, option, value, NULL TSRMLS_CC)) { in php_do_chgrp()
575 int option; in php_do_chown() local
578 option = PHP_STREAM_META_OWNER; in php_do_chown()
581 option = PHP_STREAM_META_OWNER_NAME; in php_do_chown()
587 if(wrapper->wops->stream_metadata(wrapper, filename, option, value, NULL TSRMLS_CC)) { in php_do_chown()
/PHP-5.5/ext/sockets/tests/
H A Dsocket_set_option_seolinger.phpt2 Test if socket_set_option() works, option:SO_SEOLINGER
/PHP-5.5/sapi/roxen/
H A DREADME7 script is executed at any one time). The second option is using ZTS
/PHP-5.5/ext/mbstring/tests/
H A Dmb_ereg_match_basic.phpt10 /* Prototype : bool mb_ereg_match(string $pattern, string $string [,string $option])

Completed in 69 milliseconds

123456789