Home
last modified time | relevance | path

Searched refs:options (Results 151 – 175 of 505) sorted by relevance

12345678910>>...21

/php-src/ext/dom/
H A Dphp_dom.stub.php414 public function getRootNode(?array $options = null): DOMNode {} argument
822 public function load(string $filename, int $options = 0): bool {} argument
825 public function loadXML(string $source, int $options = 0): bool {} argument
834 public function save(string $filename, int $options = 0): int|false {} argument
838 public function loadHTML(string $source, int $options = 0): bool {} argument
841 public function loadHTMLFile(string $filename, int $options = 0): bool {} argument
871 public function xinclude(int $options = 0): int|false {} argument
1159 public function getRootNode(array $options = []): Node {} argument
1598 public function saveXMLFile(string $filename, int $options = 0): int|false {} argument
1629 public function xinclude(int $options = 0): int|false {} argument
[all …]
H A Ddocument.c1403 options |= XML_PARSE_DTDVALID; in dom_document_parser()
1406 options |= XML_PARSE_DTDATTR; in dom_document_parser()
1409 options |= XML_PARSE_NOENT; in dom_document_parser()
1412 options |= XML_PARSE_NOBLANKS; in dom_document_parser()
1416 xmlCtxtUseOptions(ctxt, options); in dom_document_parser()
1493 zend_long options = 0; in dom_parse_document() local
1546 zend_long options = 0; in PHP_METHOD() local
1591 zend_long options = 0; in dom_document_save_xml() local
1644 if (options & XML_SAVE_NO_DECL) { in dom_document_save_xml()
2042 zend_long options = 0; in dom_load_html() local
[all …]
/php-src/ext/zlib/
H A Dzlib.c792 if (options && (option_buffer = zend_hash_str_find(options, ZEND_STRL("dictionary"))) != NULL) { in zlib_create_dictionary_string()
871 HashTable *options = NULL; in PHP_FUNCTION() local
874 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS(), "l|H", &encoding, &options)) { in PHP_FUNCTION()
878 if (options && (option_buffer = zend_hash_str_find(options, ZEND_STRL("window"))) != NULL) { in PHP_FUNCTION()
886 if (!zlib_create_dictionary_string(options, &dict, &dictlen)) { in PHP_FUNCTION()
1089 HashTable *options = NULL; in PHP_FUNCTION() local
1096 if (options && (option_buffer = zend_hash_str_find(options, ZEND_STRL("level"))) != NULL) { in PHP_FUNCTION()
1104 if (options && (option_buffer = zend_hash_str_find(options, ZEND_STRL("memory"))) != NULL) { in PHP_FUNCTION()
1112 if (options && (option_buffer = zend_hash_str_find(options, ZEND_STRL("window"))) != NULL) { in PHP_FUNCTION()
1120 if (options && (option_buffer = zend_hash_str_find(options, ZEND_STRL("strategy"))) != NULL) { in PHP_FUNCTION()
[all …]
/php-src/ext/soap/tests/bugs/
H A Dbug39815.phpt20 function __construct($wsdl, $options) {
21 parent::__construct($wsdl, $options);
22 $this->server = new SoapServer($wsdl, $options);
H A Dbug30106.phpt18 function __construct($wsdl, $options=array()) {
19 parent::__construct($wsdl, $options);
20 $this->server = new SoapServer($wsdl, $options);
H A Dbug55323.phpt13 function __construct($wsdl, $options) {
14 parent::__construct($wsdl, $options);
H A Dbug35142.phpt22 function __construct($wsdl, $options) {
23 parent::__construct($wsdl, $options);
24 $this->server = new SoapServer($wsdl, $options);
H A Dbug36226-2.phpt21 function __construct($wsdl, $options) {
22 parent::__construct($wsdl, $options);
23 $this->server = new SoapServer($wsdl, $options);
/php-src/ext/pdo_mysql/tests/
H A Dpdo_mysql___construct_options_libmysql.phpt2 MySQL PDO->__construct(), libmysql only options
10 die("skip libmysql only options")
24 printf("[%03d] Expecting '%s'/%s got '%s'/%s' for options '%s'\n",
/php-src/main/streams/
H A Duserspace.c54 int options, zend_string **opened_path, php_stream_context *context STREAMS_DC);
306 php_stream_wrapper_log_error(wrapper, options, "infinite recursion prevented"); in user_wrapper_opener()
317 (options & STREAM_OPEN_FOR_INCLUDE) && in user_wrapper_opener()
338 ZVAL_LONG(&args[2], options); in user_wrapper_opener()
395 int options, zend_string **opened_path, php_stream_context *context STREAMS_DC) in user_wrapper_opendir() argument
425 ZVAL_LONG(&args[1], options); in user_wrapper_opendir()
1072 int options, php_stream_context *context) in user_wrapper_rename() argument
1113 int options, php_stream_context *context) in user_wrapper_mkdir() argument
1131 ZVAL_LONG(&args[2], options); in user_wrapper_mkdir()
1156 int options, php_stream_context *context) in user_wrapper_rmdir() argument
[all …]
/php-src/ext/pdo/
H A Dphp_pdo_driver.h176 static inline zend_long pdo_attr_lval(zval *options, unsigned option_name, zend_long defval) in pdo_attr_lval() argument
180 if (options && (v = zend_hash_index_find(Z_ARRVAL_P(options), option_name))) { in pdo_attr_lval()
185 static inline zend_string *pdo_attr_strval(zval *options, unsigned option_name, zend_string *defval) in pdo_attr_strval() argument
189 if (options && (v = zend_hash_index_find(Z_ARRVAL_P(options), option_name))) { in pdo_attr_strval()
/php-src/ext/filter/tests/
H A D051.phpt8 var_dump(filter_var("123asd", FILTER_VALIDATE_INT, array("options"=>array("default"=>$default))));
H A D053.phpt10 'options' => 'filter_test',
H A Dcallback_closure.phpt11 var_dump(filter_var($var, FILTER_CALLBACK, array('options'=> $callback)));
H A Dcallback_non_modified_var.phpt11 var_dump(filter_var($var, FILTER_CALLBACK, array('options'=>'callback')));
/php-src/ext/ftp/tests/
H A Dftp_set_option_errors.phpt17 $options = [
24 foreach ($options as $option) try {
/php-src/sapi/phpdbg/
H A Dphpdbg_arginfo.h39 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, options, IS_ARRAY, 0, "[]")
43 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, options, IS_ARRAY, 0, "[]")
/php-src/scripts/
H A Dphp-config.in77 --configure-options)
106 --configure-options [$configure_options]
/php-src/ext/date/tests/
H A Ddate_interval_bad_format_leak.phpt40 Deprecated: Calling DatePeriod::__construct(string $isostr, int $options = 0) is deprecated, use Da…
44 Deprecated: Calling DatePeriod::__construct(string $isostr, int $options = 0) is deprecated, use Da…
/php-src/ext/dom/lexbor/lexbor/selectors/
H A Dselectors.h107 lxb_selectors_opt_t options; member
241 selectors->options = opt; in lxb_selectors_opt_set()
/php-src/ext/soap/tests/
H A Dclassmap002.phpt29 $options=Array(
34 $client = new TestSoapClient(__DIR__."/classmap.wsdl",$options);
/php-src/ext/tidy/tests/
H A D015.phpt2 Passing configuration options through tidy_parse_file().
/php-src/ext/standard/tests/streams/
H A Dbug44712.phpt7 stream_context_set_params($ctx, array("options" => 1));
/php-src/ext/dom/tests/
H A Dbug74004.phpt2 … (DOMDocument->loadHTML and ->loadHTMLFile do not heed LIBXML_NOWARNING and LIBXML_NOERROR options)
/php-src/ext/pcre/pcre2lib/
H A Dpcre2_substitute.c221 PCRE2_SIZE start_offset, uint32_t options, pcre2_match_data *match_data, in pcre2_substitute() argument
260 if ((options & (PCRE2_PARTIAL_HARD|PCRE2_PARTIAL_SOFT)) != 0) in pcre2_substitute()
278 use_existing_match = ((options & PCRE2_SUBSTITUTE_MATCHED) != 0); in pcre2_substitute()
279 replacement_only = ((options & PCRE2_SUBSTITUTE_REPLACEMENT_ONLY) != 0); in pcre2_substitute()
346 if (utf && (options & PCRE2_NO_UTF_CHECK) == 0) in pcre2_substitute()
359 suboptions = options & SUBSTITUTE_OPTIONS; in pcre2_substitute()
360 options &= ~SUBSTITUTE_OPTIONS; in pcre2_substitute()
389 else rc = pcre2_match(code, subject, length, start_offset, options|goptions, in pcre2_substitute()
393 if (utf) options |= PCRE2_NO_UTF_CHECK; /* Only need to check once */ in pcre2_substitute()

Completed in 58 milliseconds

12345678910>>...21