Home
last modified time | relevance | path

Searched refs:method (Results 51 – 75 of 830) sorted by last modified time

12345678910>>...34

/PHP-7.4/ext/openssl/tests/
H A Dopenssl_decrypt_error.phpt8 $method = "AES-128-CBC";
11 $iv = str_repeat("\0", openssl_cipher_iv_length($method));
13 $encrypted = openssl_encrypt($data, $method, $password);
15 var_dump(openssl_encrypt($data, $method, $password, 0, $iv));
16 var_dump(openssl_decrypt($encrypted, $method, $wrong));
18 var_dump(openssl_decrypt($wrong, $method, $password));
22 var_dump(openssl_decrypt(array(), $method, $password));
24 var_dump(openssl_decrypt($encrypted, $method, array()));
H A Dopenssl_encrypt_error.phpt8 $method = "AES-128-CBC";
10 $iv = str_repeat("\0", openssl_cipher_iv_length($method));
17 var_dump(openssl_encrypt($object, $method, $password));
19 var_dump(openssl_encrypt($data, $method, $object));
20 var_dump(openssl_encrypt($arr, $method, $object));
22 var_dump(openssl_encrypt($data, $method, $arr));
25 var_dump(openssl_encrypt($data, $method, $password, OPENSSL_DONT_ZERO_PAD_KEY, $iv));
49 Warning: openssl_encrypt(): Key length cannot be set for the cipher method in %s on line %d
H A Dopenssl_decrypt_ccm.phpt15 foreach ($methods as $method) {
16 $tests = openssl_get_cipher_tests($method);
18 echo "$method - TEST $idx\n";
19 $pt = openssl_decrypt($test['ct'], $method, $test['key'], OPENSSL_RAW_DATA,
26 var_dump(openssl_decrypt($test['ct'], $method, $test['key'], OPENSSL_RAW_DATA,
29 var_dump(openssl_decrypt($test['ct'], $method, $test['key'], OPENSSL_RAW_DATA,
32 var_dump(openssl_decrypt($test['ct'], $method, $test['key'], OPENSSL_RAW_DATA,
H A Dopenssl_encrypt_ccm.phpt15 foreach ($methods as $method) {
16 $tests = openssl_get_cipher_tests($method);
18 echo "$method - TEST $idx\n";
19 $ct = openssl_encrypt($test['pt'], $method, $test['key'], OPENSSL_RAW_DATA,
27 var_dump(openssl_encrypt('data', $method, 'password', 0, NULL, $tag, ''));
30 var_dump(openssl_encrypt('data', $method, 'password', 0, str_repeat('x', 10), $tag, '', 14));
34 var_dump(openssl_encrypt('data', $method, 'password', 0, str_repeat('x', 16), $tag, '', 1024));
H A Dstreams_crypto_method.phpt2 Specific crypto method for ssl:// transports.
/PHP-7.4/Zend/tests/
H A Dbug80126.phpt7 public function method(): I;
11 public function method(): I { }
17 public function method(): C2 { }
H A Dbug80126_2.phpt7 public function method(): I;
11 public function method(): I {
21 public function method(): C2 { }
H A Dbug79740.phpt20 Deprecated: Non-static method A::serialize() should not be called statically in %s on line %d
22 Deprecated: Non-static method A::unserialize() should not be called statically in %s on line %d
/PHP-7.4/ext/soap/
H A Dsoap.c3726 xmlNodePtr method = NULL, param; local
3750 method = xmlNewChild(body, ns, BAD_CAST(function_name), NULL);
3771 rpc_result = xmlNewChild(method, rpc_ns, BAD_CAST("result"), NULL);
3816 if (use == SOAP_ENCODED && version == SOAP_1_2 && method != NULL) {
3820 *node = method;
4198 xmlNodePtr envelope = NULL, body, method = NULL, head = NULL; local
4258 method = xmlNewChild(body, ns, BAD_CAST(function_name), NULL);
4264 method = body;
4267 method = body;
4305 param = serialize_parameter(parameter, NULL, i, NULL, use, method);
[all …]
/PHP-7.4/
H A DUPGRADING32 function or class name. It can still be used as a method or class constant
43 implementations may need to implement the stream_set_option() method to
122 . The signature of the ReflectionMethod::getClosure() method changed to
221 public function method(): A {}
224 public function method(): B {}
408 . Unbinding $this of a non-static method through a combination of
410 so is equivalent to calling a non-static method statically, which has been
440 This method has been deprecated in favor of ReflectionNamedType::getName()
/PHP-7.4/ext/pdo/
H A Dpdo_stmt.c2602 static int row_call_method(zend_string *method, zend_object *object, INTERNAL_FUNCTION_PARAMETERS) in row_call_method() argument
/PHP-7.4/ext/com_dotnet/
H A Dcom_saproxy.c332 static int saproxy_call_method(zend_string *method, zend_object *object, INTERNAL_FUNCTION_PARAMETE… in saproxy_call_method() argument
H A Dcom_handlers.c382 static int com_call_method(zend_string *method, zend_object *object, INTERNAL_FUNCTION_PARAMETERS) in com_call_method() argument
/PHP-7.4/ext/spl/
H A Dspl_iterators.c886 static zend_function *spl_recursive_it_get_method(zend_object **zobject, zend_string *method, const… in spl_recursive_it_get_method() argument
898 function_handler = zend_std_get_method(zobject, method, key); in spl_recursive_it_get_method()
900 if ((function_handler = zend_hash_find_ptr(&Z_OBJCE_P(zobj)->function_table, method)) == NULL) { in spl_recursive_it_get_method()
902 function_handler = (*zobject)->handlers->get_method(zobject, method, key); in spl_recursive_it_get_method()
1345 static zend_function *spl_dual_it_get_method(zend_object **object, zend_string *method, const zval … in spl_dual_it_get_method() argument
1352 function_handler = zend_std_get_method(object, method, key); in spl_dual_it_get_method()
1354 if ((function_handler = zend_hash_find_ptr(&intern->inner.ce->function_table, method)) == NULL) { in spl_dual_it_get_method()
1357 function_handler = (*object)->handlers->get_method(object, method, key); in spl_dual_it_get_method()
1367 int spl_dual_it_call_method(char *method, INTERNAL_FUNCTION_PARAMETERS) in spl_dual_it_call_method() argument
1379 ZVAL_STRING(&func, method, 0); in spl_dual_it_call_method()
[all …]
/PHP-7.4/Zend/
H A Dzend_builtin_functions.c159 ZEND_ARG_INFO(0, method)
/PHP-7.4/sapi/apache2handler/
H A Dsapi_apache2.c510 SG(request_info).request_method = r->method; in php_apache_request_ctor()
/PHP-7.4/ext/standard/
H A Dbasic_functions.c5109 zval *obj, *method; local
5115 && (method = zend_hash_index_find(Z_ARRVAL_P(function), 1)) != NULL
5117 && Z_TYPE_P(method) == IS_STRING) {
5118 …e to call %s::%s() - function does not exist", ZSTR_VAL(Z_OBJCE_P(obj)->name), Z_STRVAL_P(method));
/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd.h305 #define MYSQLND_METHOD(class, method) mysqlnd_##class##_##method##_pub argument
306 #define MYSQLND_METHOD_PRIVATE(class, method) mysqlnd_##class##_##method##_priv argument
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_utils.c115 PHPDBG_API int phpdbg_is_class_method(const char *str, size_t len, char **class, char **method) /* … in phpdbg_is_class_method() argument
142 if (method != NULL) { in phpdbg_is_class_method()
143 *method = estrndup(sep+2, str + len - (sep + 2)); in phpdbg_is_class_method()
H A Dphpdbg.c367 char *class = NULL, *method = NULL; in PHP_FUNCTION() local
370 if (zend_parse_parameters(ZEND_NUM_ARGS(), "ss", &class, &clen, &method, &mlen) == FAILURE) { in PHP_FUNCTION()
374 phpdbg_set_breakpoint_method(class, method); in PHP_FUNCTION()
728 ZEND_ARG_INFO(0, method)
H A Dphpdbg_cmd.c162 dest->method.class = estrdup(src->method.class); in phpdbg_copy_param()
163 dest->method.name = estrdup(src->method.name); in phpdbg_copy_param()
181 dest->method.class = estrdup(src->method.class); in phpdbg_copy_param()
182 dest->method.name = estrdup(src->method.name); in phpdbg_copy_param()
208 hash += zend_inline_hash_func(param->method.class, strlen(param->method.class)); in phpdbg_hash_param()
209 hash += zend_inline_hash_func(param->method.name, strlen(param->method.name)); in phpdbg_hash_param()
233 hash += zend_inline_hash_func(param->method.class, strlen(param->method.class)); in phpdbg_hash_param()
234 hash += zend_inline_hash_func(param->method.name, strlen(param->method.name)); in phpdbg_hash_param()
297 strlen(l->method.class), strlen(r->method.class)}; in phpdbg_match_param()
299 if (memcmp(l->method.class, r->method.class, lengths[0]) == SUCCESS) { in phpdbg_match_param()
[all …]
/PHP-7.4/ext/opcache/tests/
H A Dpreload_static_var_inheritance.phpt2 Bug #79548: Preloading segfault with inherited method using static variable
/PHP-7.4/sapi/cli/tests/
H A Dphp_cli_server_018.phpt2 Implement Req #61679 (Support HTTP PATCH method)
H A Dbug61679.phpt18 // Send a request with a fictitious request method,
/PHP-7.4/sapi/fpm/
H A Dwww.conf.in200 ; request method - the request method (GET, POST, ...);
224 ; request method: GET
284 ; %m: request method

Completed in 208 milliseconds

12345678910>>...34