Home
last modified time | relevance | path

Searched refs:options (Results 1 – 25 of 490) sorted by last modified time

12345678910>>...20

/PHP-7.2/
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 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
H A DUPGRADING135 . Added JSON_INVALID_UTF8_IGNORE and JSON_INVALID_UTF8_SUBSTITUTE options for
H A Dserver-tests.php238 public $options = array(); variable in HTTPRequest
263 function HTTPRequest($URL, $headers=array(), $options=array(), $postdata=NULL) argument
267 $this->options = $options;
277 if (isset($this->options['timeout']))
278 $this->timeout = (int)$this->options['timeout'];
328 if (isset($this->options['proxy_host'])) {
1280 $options = array();
1281 $options['method']=$method;
1282 if (isset($this->conf['timeout'])) $options['timeout'] = $this->conf['timeout'];
1283 if (isset($this->conf['proxy_host'])) $options['proxy_host'] = $this->conf['proxy_host'];
[all …]
/PHP-7.2/ext/openssl/
H A Dopenssl.c407 ZEND_ARG_INFO(0, options)
418 ZEND_ARG_INFO(0, options)
6445 char *tag, int tag_len, zend_long options, int enc) /* {{{ */ in php_openssl_cipher_init() argument
6505 if (options & OPENSSL_ZERO_PADDING) { in php_openssl_cipher_init()
6558 zend_long options = 0, tag_len = 16; in PHP_FUNCTION() local
6570 &password, &password_len, &options, &iv, &iv_len, &tag, &aad, &aad_len, &tag_len) == FAILURE) { in PHP_FUNCTION()
6594 &iv, &iv_len, &free_iv, NULL, tag_len, options, 1) == FAILURE || in PHP_FUNCTION()
6600 if (options & OPENSSL_RAW_DATA) { in PHP_FUNCTION()
6657 zend_long options = 0; in PHP_FUNCTION() local
6697 if (!(options & OPENSSL_RAW_DATA)) { in PHP_FUNCTION()
[all …]
/PHP-7.2/ext/phar/
H A Dzip.c743 …char *fname, int fname_len, char *alias, int alias_len, int is_data, int options, phar_archive_dat… in phar_open_or_create_zip() argument
746 …int ret = phar_create_or_parse_filename(fname, fname_len, alias, alias_len, is_data, options, &pha… in phar_open_or_create_zip()
/PHP-7.2/main/streams/
H A Dstreams.c1741 if (options & IGNORE_URL) {
1790 if (options & REPORT_ERRORS) {
1829 if (options & REPORT_ERRORS) {
1843 if (options & REPORT_ERRORS) {
2010 if (options & USE_PATH) {
2016 options &= ~USE_PATH;
2075 (options & STREAM_WILL_CAST)
2094 if (options & REPORT_ERRORS) {
2101 options ^= REPORT_ERRORS;
2164 ZVAL_UNDEF(&context->options);
[all …]
/PHP-7.2/ext/session/
H A Dsession.c2344 zval *options = NULL; in PHP_FUNCTION() local
2350 if (zend_parse_parameters(ZEND_NUM_ARGS(), "|a", &options) == FAILURE) { in PHP_FUNCTION()
2370 if (options) { in PHP_FUNCTION()
2371 ZEND_HASH_FOREACH_KEY_VAL(Z_ARRVAL_P(options), num_idx, str_idx, value) { in PHP_FUNCTION()
2669 ZEND_ARG_INFO(0, options) /* array */
/PHP-7.2/ext/dom/
H A Ddocument.c122 ZEND_ARG_INFO(0, options)
131 ZEND_ARG_INFO(0, options)
136 ZEND_ARG_INFO(0, options)
148 ZEND_ARG_INFO(0, options)
153 ZEND_ARG_INFO(0, options)
158 ZEND_ARG_INFO(0, options)
1481 zend_long options = 0; in dom_parse_document() local
1572 zend_long options = 0; in PHP_FUNCTION() local
1618 zend_long options = 0; in PHP_FUNCTION() local
2003 zend_long options = 0; in dom_load_html() local
[all …]
/PHP-7.2/win32/
H A Dinstall.txt260 To make php7ts.dll available you have three options: copy
1070 There are several options for downloading PECL extensions, such as:
/PHP-7.2/win32/build/
H A Dconfig.w3242 ERROR("--enable-pgi and --with-pgo options can only be used if PGO capable compiler is present.");
94 // Set some debug/release specific options
100 // Add compiler and link flags if PGO options are selected
H A Dconfig.w32.phpize.in71 // Set some debug/release specific options
/PHP-7.2/scripts/dev/generate-phpt/src/
H A Dgenerate-phpt.php21 $options->parse($argv);
27 if($options->hasOption('h')) {
33 $preConditions->check($options);
39 if($options->hasOption('s')) {
45 if($options->hasOption('c')) {
46 $name = $options->getOption('c')."_".$options->getOption('m');
47 $method = new gtMethod($options->getOption('c'), $options->getOption('m'));
58 if($options->hasOption('f')) {
67 if($options->hasOption('b')) {
80 if($options->hasOption('e')) {
[all …]
/PHP-7.2/scripts/dev/generate-phpt/src/setup/
H A DgtCommandLineOptions.php26 protected $options; variable in gtCommandLineOptions
62 $this->options[$option] = true;
72 $this->options[$option] = $argv[$i];
81 if (!isset($this->options[$option])) {
84 return $this->options[$option];
93 return isset($this->options[$option]);
H A DgtOptionalSections.php17 $options = explode(':', $commandLineOptions->getOption('s'));
19 foreach($options as $option) {
/PHP-7.2/scripts/
H A Dphp-config.in62 --configure-options)
83 --configure-options [$configure_options]
/PHP-7.2/sapi/phpdbg/
H A Dphpdbg_webdata_transfer.c104 if (SG(options) & SAPI_OPTION_NO_CHDIR) { in phpdbg_webdata_compress()
H A Dphpdbg.c545 HashTable *options = NULL; in PHP_FUNCTION() local
557 if (zend_parse_parameters(ZEND_NUM_ARGS(), "|H", &options) == FAILURE) { in PHP_FUNCTION()
561 if (options && (option_buffer = zend_hash_str_find(options, ZEND_STRL("functions")))) { in PHP_FUNCTION()
565 if (options && (option_buffer = zend_hash_str_find(options, ZEND_STRL("opcodes")))) { in PHP_FUNCTION()
571 if (options && (option_buffer = zend_hash_str_find(options, ZEND_STRL("files")))) { in PHP_FUNCTION()
646 HashTable *options = NULL; in PHP_FUNCTION() local
651 if (zend_parse_parameters(ZEND_NUM_ARGS(), "|H", &options) == FAILURE) { in PHP_FUNCTION()
666 if (options && (option_buffer = zend_hash_str_find(options, ZEND_STRL("functions")))) { in PHP_FUNCTION()
670 if (options && (option_buffer = zend_hash_str_find(options, ZEND_STRL("opcodes")))) { in PHP_FUNCTION()
779 ZEND_ARG_INFO(0, options)
[all …]
H A Dphpdbg.h313 …hp)(php_stream_wrapper *wrapper, const char *path, const char *mode, int options, zend_string **op…
H A Dphpdbg_help.c36 PHPDBG_COMMAND_HELP_D(options, "command line options", 0, NULL),
/PHP-7.2/sapi/phpdbg/tests/
H A Dphpdbg_get_executable_stream_wrapper.phpt31 int $options = 0,
76 * If we call phpdbg_get_executable() and pass no options, the realpath of the
/PHP-7.2/scripts/dev/
H A Dgenerate-phpt.phar30 $options->parse($argv);
36 if($options->hasOption('h')) {
48 if($options->hasOption('s')) {
54 if($options->hasOption('c')) {
55 $name = $options->getOption('c')."_".$options->getOption('m');
56 $method = new gtMethod($options->getOption('c'), $options->getOption('m'));
67 if($options->hasOption('f')) {
76 if($options->hasOption('b')) {
89 if($options->hasOption('e')) {
104 if($options->hasOption('v')) {
[all …]
/PHP-7.2/sapi/litespeed/
H A DREADME.md33 PHP with LiteSpeed SAPI, all other SAPI related configure options
H A Dlsapi_main.c1286 SG(options) |= SAPI_OPTION_NO_CHDIR; in cli_main()
/PHP-7.2/sapi/fpm/
H A Dphp-fpm.conf.in115 ; ports and different management options. The name of the pool will be

Completed in 176 milliseconds

12345678910>>...20