Home
last modified time | relevance | path

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

12345678910>>...20

/PHP-7.2/
H A DINSTALL152 use of the command line options of the configure script. You could get
153 a list of all available options along with short explanations running
154 ./configure --help. Our manual documents the different options
155 separately. You will find the core options in the appendix, while the
177 installation options for Apache may be found there.
218 various options, like which extensions will be enabled. Run
1046 There are several options for downloading PECL extensions, such as:
1257 --configure-options [...]
1261 CAPTION: Command line options
1265 --includes List of -I options with all include files
[all …]
H A DNEWS320 . Fixed bug #78269 (password_hash uses weak options for argon2). (Remi)
790 . Add support for getting SKIP_TAGSTART and SKIP_WHITE options. (cmb)
1501 . Add JSON_INVALID_UTF8_IGNORE and JSON_INVALID_UTF8_SUBSTITUTE options for
2791 json_encode options and added JSON_UNESCAPED_LINE_TERMINATORS to restore
H A DREADME.STREAMS50 int options, char **opened_path);
55 options is a combination of the following values:
H A DREADME.TESTING216 You can run 'php server-tests.php -h' to get all the possible options.
19 handy if you are testing multiple environments and need various options
29 (see config options TEST_WEB_BASE_URL, TEST_BASE_PATH, and TEST_WEB_EXT)
H A DUPGRADING135 . Added JSON_INVALID_UTF8_IGNORE and JSON_INVALID_UTF8_SUBSTITUTE options for
H A DUPGRADING.INTERNALS72 is_callable_replace options is removed:
H A Dacinclude.m41535 dnl Must be run after all --with-NN options that let the user
2351 dnl Fallbacks for different configure options
2794 # Allow certain libtool options
2797 # Allow certain TSRM options
2800 # Allow certain Zend options
H A Dconfig.guess1081 if test -f /usr/options/cb.name; then
1082 UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name`
H A Dconfigure.ac1537 dnl Check for unknown configure options
1673 # Output unknown configure options
1675 echo "Notice: Following unknown configure options were used:
1678 Check '[$]0 --help' for available options
/PHP-7.2/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 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.2/Zend/
H A Dzend_builtin_functions.c222 ZEND_ARG_INFO(0, options)
227 ZEND_ARG_INFO(0, options)
2216 zend_long options = 0; in ZEND_FUNCTION() local
2219 if (zend_parse_parameters(ZEND_NUM_ARGS(), "|ll", &options, &limit) == FAILURE) { in ZEND_FUNCTION()
2309 if ((options & DEBUG_BACKTRACE_IGNORE_ARGS) == 0) { in ZEND_FUNCTION()
2401 ZEND_API void zend_fetch_debug_backtrace(zval *return_value, int skip_last, int options, int limit)… in zend_fetch_debug_backtrace() argument
2532 if ((options & DEBUG_BACKTRACE_PROVIDE_OBJECT) != 0) { in zend_fetch_debug_backtrace()
2547 if ((options & DEBUG_BACKTRACE_IGNORE_ARGS) == 0 && in zend_fetch_debug_backtrace()
2620 zend_long options = DEBUG_BACKTRACE_PROVIDE_OBJECT; in ZEND_FUNCTION() local
2623 if (zend_parse_parameters(ZEND_NUM_ARGS(), "|ll", &options, &limit) == FAILURE) { in ZEND_FUNCTION()
[all …]
H A Dzend_builtin_functions.h28 ZEND_API void zend_fetch_debug_backtrace(zval *return_value, int skip_last, int options, int limit);
/PHP-7.2/build/
H A Dlibtool.m41135 # Check to see if options -c and -o are simultaneously supported by compiler
3645 # The compiler driver will combine and reorder linker options,
4024 # See if we are running on zsh, and set the options which allow our commands through
4151 # Sed that helps us avoid accidentally triggering echo(1) options like -n.
4269 # Does compiler simultaneously support -c and -o options?
4782 # Interix 3.x gcc -fpic/-fPIC options generate broken code.
5070 # Interix 3.x gcc -fpic/-fPIC options generate broken code.
6070 # The compiler driver will combine and reorder linker options,
/PHP-7.2/ext/bcmath/libbcmath/
H A Dconfigure138 Usage: configure [options] [host]
/PHP-7.2/ext/bz2/
H A Dbz2.c244 int options, in _php_stream_bz2open() argument
285 stream = php_stream_open_wrapper(path, mode, options | STREAM_WILL_CAST, opened_path); in _php_stream_bz2open()
H A Dphp_bz2.h53 …pen(php_stream_wrapper *wrapper, const char *path, const char *mode, int options, zend_string **op…
57 …p_stream_bz2open(wrapper, path, mode, options, opened_path) _php_stream_bz2open((wrapper), (path),… argument
/PHP-7.2/ext/curl/
H A Dinterface.c320 ZEND_ARG_ARRAY_INFO(0, options, 0)
2950 zend_long options; in PHP_FUNCTION() local
2955 Z_PARAM_LONG(options) in PHP_FUNCTION()
2963 if (options <= 0 && options != CURLOPT_SAFE_UPLOAD) { in PHP_FUNCTION()
2968 if (_php_curl_setopt(ch, options, zvalue) == SUCCESS) { in PHP_FUNCTION()
H A Dmulti.c623 zend_long options; in PHP_FUNCTION() local
628 Z_PARAM_LONG(options) in PHP_FUNCTION()
636 if (!_php_curl_multi_setopt(mh, options, zvalue, return_value)) { in PHP_FUNCTION()
H A Dshare.c104 zend_long options; in PHP_FUNCTION() local
109 Z_PARAM_LONG(options) in PHP_FUNCTION()
117 if (!_php_curl_share_setopt(sh, options, zvalue, return_value)) { in PHP_FUNCTION()
/PHP-7.2/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);

Completed in 109 milliseconds

12345678910>>...20