Home
last modified time | relevance | path

Searched refs:options (Results 1 – 25 of 427) sorted by path

12345678910>>...18

/PHP-7.4/
H A DNEWS1094 . Fixed bug #78323 (Code 0 is returned on invalid options). (Ivan Mikheykin)
1967 . Fixed bug #78269 (password_hash uses weak options for argon2). (Remi)
2273 options filled). (Nikita)
2434 . Fixed bug #77088 (Segfault when using SoapClient with null options).
2460 'php ext_skel.php' for all options. This means there are no dependencies,
2589 incorrectly) - added new log related FPM configuration options:
2686 . Add min_proto_version and max_proto_version ssl stream options as well as
2732 . Added completion_append_character and completion_suppress_append options
2793 . Fixed bug #76688 (Disallow excessive parameters after options array).
H A DREADME.md44 ./configure [options]
46 *See `./configure -h` for configuration options.*
48 make [options]
50 *See `make -h` for make options.*
H A DUPGRADING274 options, with the same semantics as FILTER_VALIDATE_INT.
618 . The --disable-opcache-file|--enable-opcache-file configure options have been
663 . Added FreeBSD-specific socket options:
752 explicitly specifying compilation options through FOO_CFLAGS and FOO_LIBS.
H A DUPGRADING.INTERNALS262 - Added --ini-path and --ini-dir options to php-config.
308 to enable error when invalid options are used.
H A Dbuildconf30 is used to customize the PHP build based on the provided options and system. PHP
37 buildconf [<options>]
/PHP-7.4/Zend/tests/
H A Dbug38779.phpt9 public function stream_open($path, $mode, $options, &$opened_path) {
H A Dbug38779_1.phpt9 public function stream_open($path, $mode, $options, &$opened_path) {
H A Dbug55578.phpt5 $options = array();
13 function test($options, $queryPart) {
17 var_dump(test($options, new Foo()));
H A Dbug74657.phpt12 public $options = [self::FOO => "bar"];
16 var_dump((new C)->options);
19 var_dump((new C)->options);
H A Dbug78340.phpt11 function stream_open($path, $mode, $options, $opened_path) {
H A Ddebug_backtrace_options.phpt2 debug_backtrace options
H A Ddebug_backtrace_with_include_and_this.phpt6 function stream_open($path, $mode, $options, $opened_path) {
/PHP-7.4/Zend/
H A Dzend_builtin_functions.c227 ZEND_ARG_INFO(0, options)
232 ZEND_ARG_INFO(0, options)
2222 zend_long options = 0; in ZEND_FUNCTION() local
2225 if (zend_parse_parameters(ZEND_NUM_ARGS(), "|ll", &options, &limit) == FAILURE) { in ZEND_FUNCTION()
2307 if ((options & DEBUG_BACKTRACE_IGNORE_ARGS) == 0) { in ZEND_FUNCTION()
2399 ZEND_API void zend_fetch_debug_backtrace(zval *return_value, int skip_last, int options, int limit)… in zend_fetch_debug_backtrace() argument
2522 if ((options & DEBUG_BACKTRACE_PROVIDE_OBJECT) != 0) { in zend_fetch_debug_backtrace()
2537 if ((options & DEBUG_BACKTRACE_IGNORE_ARGS) == 0 && in zend_fetch_debug_backtrace()
2610 zend_long options = DEBUG_BACKTRACE_PROVIDE_OBJECT; in ZEND_FUNCTION() local
2613 if (zend_parse_parameters(ZEND_NUM_ARGS(), "|ll", &options, &limit) == FAILURE) { in ZEND_FUNCTION()
[all …]
H A Dzend_builtin_functions.h26 ZEND_API void zend_fetch_debug_backtrace(zval *return_value, int skip_last, int options, int limit);
/PHP-7.4/build/
H A Dconfig.guess1217 if test -f /usr/options/cb.name; then
1218 UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name`
H A Dlibtool.m41131 # Check to see if options -c and -o are simultaneously supported by compiler
3641 # The compiler driver will combine and reorder linker options,
4020 # See if we are running on zsh, and set the options which allow our commands through
4147 # Sed that helps us avoid accidentally triggering echo(1) options like -n.
4265 # Does compiler simultaneously support -c and -o options?
4778 # Interix 3.x gcc -fpic/-fPIC options generate broken code.
5066 # Interix 3.x gcc -fpic/-fPIC options generate broken code.
6066 # The compiler driver will combine and reorder linker options,
/PHP-7.4/docs/
H A Dstreams.md49 int options, char **opened_path);
56 * `options` is a combination of the following values:
/PHP-7.4/ext/bz2/
H A Dbz2.c249 int options, in _php_stream_bz2open() argument
290 stream = php_stream_open_wrapper(path, mode, options | STREAM_WILL_CAST, opened_path); in _php_stream_bz2open()
H A Dphp_bz2.h51 …pen(php_stream_wrapper *wrapper, const char *path, const char *mode, int options, zend_string **op…
55 …p_stream_bz2open(wrapper, path, mode, options, opened_path) _php_stream_bz2open((wrapper), (path),… argument
/PHP-7.4/ext/curl/
H A Dinterface.c260 ZEND_ARG_ARRAY_INFO(0, options, 0)
3147 zend_long options; in PHP_FUNCTION() local
3152 Z_PARAM_LONG(options) in PHP_FUNCTION()
3160 if (options <= 0 && options != CURLOPT_SAFE_UPLOAD) { in PHP_FUNCTION()
3165 if (_php_curl_setopt(ch, options, zvalue) == SUCCESS) { in PHP_FUNCTION()
H A Dmulti.c622 zend_long options; in PHP_FUNCTION() local
627 Z_PARAM_LONG(options) in PHP_FUNCTION()
635 if (!_php_curl_multi_setopt(mh, options, zvalue, return_value)) { in PHP_FUNCTION()
H A Dshare.c99 zend_long options; in PHP_FUNCTION() local
104 Z_PARAM_LONG(options) in PHP_FUNCTION()
112 if (!_php_curl_share_setopt(sh, options, zvalue, return_value)) { in PHP_FUNCTION()
/PHP-7.4/ext/curl/tests/
H A Dbug48203_multi.phpt16 $options = array(
24 $options[CURLOPT_VERBOSE] = 1;
28 $options[CURLOPT_UPLOAD] = 1;
31 curl_setopt_array($ch1, $options);
32 curl_setopt_array($ch2, $options);
H A Dcurl_basic_018.phpt30 $options = array(
35 curl_setopt_array($chs[0], $options); //set the options
36 curl_setopt_array($chs[1], $options); //set the options
37 curl_setopt_array($chs[2], $options); //set the options
H A Dcurl_copy_handle_basic.phpt17 // set URL and other appropriate options

Completed in 79 milliseconds

12345678910>>...18