Home
last modified time | relevance | path

Searched refs:options (Results 126 – 150 of 480) sorted by relevance

12345678910>>...20

/PHP-8.3/ext/soap/tests/
H A Dtypemap012.phpt26 $options=Array(
33 $client = new TestSoapClient(__DIR__."/classmap.wsdl",$options);
/PHP-8.3/ext/standard/tests/http/
H A Dbug67430.phpt12 $options = [
19 $ctx = stream_context_create($options);
/PHP-8.3/ext/json/
H A Djson_parser.y118 …if ((parser->scanner.options & PHP_JSON_OBJECT_AS_ARRAY) && parser->methods.object_create == php_j…
229 if (parser->scanner.options & PHP_JSON_OBJECT_AS_ARRAY) { in php_json_parser_object_create()
339 int options, in php_json_parser_init_ex() argument
344 php_json_scanner_init(&parser->scanner, str, str_len, options); in php_json_parser_init_ex()
355 int options, in php_json_parser_init() argument
363 options, in php_json_parser_init()
/PHP-8.3/ext/soap/tests/bugs/
H A Dbug37278.phpt7 $options = array(
12 $client = new SoapClient(null, $options);
H A Dbug29795.phpt11 function __construct($wsdl, $options) {
12 parent::__construct($wsdl, $options);
H A Dbug39815.phpt20 function __construct($wsdl, $options) {
21 parent::__construct($wsdl, $options);
22 $this->server = new SoapServer($wsdl, $options);
H A Dbug55323.phpt13 function __construct($wsdl, $options) {
14 parent::__construct($wsdl, $options);
/PHP-8.3/ext/standard/tests/password/
H A Dpassword_hash_error.phpt41 password_hash(): Argument #3 ($options) must be of type array, stdClass given
42 password_hash(): Argument #3 ($options) must be of type array, string given
/PHP-8.3/ext/pcre/pcre2lib/sljit/
H A DsljitNativeX86_32.c268 sljit_s32 kept_saveds_count = SLJIT_KEPT_SAVEDS_COUNT(options); in sljit_emit_enter()
287 if (options & SLJIT_ENTER_REG_ARG) { in sljit_emit_enter()
345 if (!(options & SLJIT_ENTER_REG_ARG)) in sljit_emit_enter()
354 if (!(options & SLJIT_ENTER_REG_ARG)) in sljit_emit_enter()
424 if (options & SLJIT_ENTER_REG_ARG) { in sljit_emit_enter()
500 if (!(options & SLJIT_ENTER_REG_ARG)) { in sljit_set_context()
524 if (!(options & SLJIT_ENTER_REG_ARG)) in sljit_set_context()
543 if (!(compiler->options & SLJIT_ENTER_REG_ARG)) in emit_stack_frame_release()
570 if (!(compiler->options & SLJIT_ENTER_REG_ARG)) in emit_stack_frame_release()
983 kept_saveds_count = SLJIT_KEPT_SAVEDS_COUNT(compiler->options); in tail_call_reg_arg_with_args()
[all …]
/PHP-8.3/ext/hash/
H A Dhash.stub.php12 function hash(string $algo, string $data, bool $binary = false, array $options = []): string {} argument
15 function hash_file(string $algo, string $filename, bool $binary = false, array $options = []): stri… argument
/PHP-8.3/ext/standard/tests/mail/
H A Dmail_skipif.inc17 $options = OP_HALFOPEN; // this should be enough to verify server present
20 $mbox = @imap_open($mailbox, $username, $password, $options, $retries);
/PHP-8.3/Zend/
H A Dzend_builtin_functions.h26 ZEND_API void zend_fetch_debug_backtrace(zval *return_value, int skip_last, int options, int limit);
/PHP-8.3/ext/dom/
H A Ddocument.c1328 options |= XML_PARSE_DTDVALID; in dom_document_parser()
1331 options |= XML_PARSE_DTDATTR; in dom_document_parser()
1334 options |= XML_PARSE_NOENT; in dom_document_parser()
1337 options |= XML_PARSE_NOBLANKS; in dom_document_parser()
1340 options |= XML_PARSE_RECOVER; in dom_document_parser()
1344 xmlCtxtUseOptions(ctxt, options); in dom_document_parser()
1417 zend_long options = 0; in dom_parse_document() local
1469 zend_long options = 0; in PHP_METHOD() local
1514 zend_long options = 0; in PHP_METHOD() local
1982 zend_long options = 0; in dom_load_html() local
[all …]
/PHP-8.3/scripts/
H A Dphp-config.in64 --configure-options)
91 --configure-options [$configure_options]
/PHP-8.3/ext/fileinfo/tests/
H A Dfinfo_buffer_basic-mb.phpt9 $options = array(
25 foreach( $options as $option ) {
H A Dfinfo_buffer_basic.phpt9 $options = array(
25 foreach( $options as $option ) {
H A Dfinfo_buffer_variation1-mb.phpt9 $options = array(
25 foreach( $options as $option ) {
H A Dfinfo_buffer_variation1.phpt9 $options = array(
25 foreach( $options as $option ) {
/PHP-8.3/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-8.3/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-8.3/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-8.3/ext/filter/tests/
H A D051.phpt8 var_dump(filter_var("123asd", FILTER_VALIDATE_INT, array("options"=>array("default"=>$default))));
/PHP-8.3/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-8.3/ext/ftp/tests/
H A Dftp_set_option_errors.phpt17 $options = [
24 foreach ($options as $option) try {
/PHP-8.3/ext/pdo_mysql/tests/
H A Dpdo_mysql___construct_options_libmysql.phpt2 MySQL PDO->__construct(), libmysql only options
10 die("skip libmysql only options")
25 printf("[%03d] Expecting '%s'/%s got '%s'/%s' for options '%s'\n",

Completed in 57 milliseconds

12345678910>>...20