Home
last modified time | relevance | path

Searched refs:method (Results 1 – 25 of 854) sorted by last modified time

12345678910>>...35

/PHP-7.2/
H A DNEWS484 . Fixed bug #75113 (Added DatePeriod::getRecurrences() method). (Ignace
800 . Fixed bug #76901 (method_exists on SPL iterator passthrough method corrupts
1394 . Fixed bug #63384 (Cannot override an abstract method with an abstract
1395 method). (pmmaga, wes)
1645 . ZipArchive implements countable, added ZipArchive::count() method. (Remi)
1647 . Fixed bug #75143 (new method setEncryptionName() seems not to exist
2029 and DELETE method). (Christian Weiske)
2108 . Fixed bug #74383 (phar method parameters reflection correction).
2129 . Fixed bug #73960 (Leak with instance method calling static method with
2957 . Implemented request #38992 (invoke() and invokeArgs() static method calls
[all …]
H A DUPGRADING120 inherited method. This complies with contravariance of method argument types
123 . It is now allowed to override an abstract method with another abstract
124 method in a child class.
162 ZipArchive::setEncryptionName($name, $method [, $password]);
163 ZipArchive::setEncryptionIndex($index, $method [, $password]);
170 . ZipArchive implements countable, added ZipArchive::count() method.
/PHP-7.2/ext/openssl/
H A Dopenssl.c148 ZEND_ARG_INFO(0, method)
1803 zval *method = NULL; in PHP_FUNCTION() local
1822 if (method != NULL) { in PHP_FUNCTION()
2244 if (method->it) { in openssl_x509v3_subjectAltName()
4967 char *method; in PHP_FUNCTION() local
5915 if (method == NULL || Z_TYPE_P(method) == IS_LONG) { in PHP_FUNCTION()
5979 if (method == NULL || Z_TYPE_P(method) == IS_LONG) { in PHP_FUNCTION()
6029 char *method =NULL; in PHP_FUNCTION() local
6047 if (method) { in PHP_FUNCTION()
6180 if (method) { in PHP_FUNCTION()
[all …]
/PHP-7.2/ext/openssl/tests/
H A Dcipher_tests.inc114 function openssl_get_cipher_tests($method)
120 foreach ($php_openssl_cipher_tests[$method] as $instance) {
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));
/PHP-7.2/ext/phar/
H A Dphar_object.c1038 zend_long method = 0; in PHP_METHOD() local
1045 switch (method) { in PHP_METHOD()
2459 switch (method) { in PHP_METHOD()
2562 switch (method) { in PHP_METHOD()
3268 zend_long method; in PHP_METHOD() local
3291 switch (method) { in PHP_METHOD()
3381 zend_long method; in PHP_METHOD() local
3394 switch (method) { in PHP_METHOD()
4647 switch (method) { in PHP_METHOD()
4984 zend_long method; in PHP_METHOD() local
[all …]
/PHP-7.2/ext/spl/
H A Dspl_directory.c679 zend_function *spl_filesystem_object_get_method_check(zend_object **object, zend_string *method, co… in spl_filesystem_object_get_method_check() argument
691 return zend_get_std_object_handlers()->get_method(object, method, key); in spl_filesystem_object_get_method_check()
/PHP-7.2/win32/
H A Dinstall.txt69 choices for the method of connecting PHP to the server. For many
143 you'll soon learn, the preferred method for installing PHP is to
1792 No, it is possible to handle any request method, e.g. CONNECT. Proper
/PHP-7.2/tests/lang/
H A DpassByReference_005.phpt96 echo "\n\n ---- Pass by ref / pass by val: static method calls ----\n";
118 echo "\n\n ---- Pass by ref / pass by val: instance method calls ----\n";
179 ---- Pass by ref / pass by val: static method calls ----
181 Deprecated: Non-static method C::v() should not be called statically in %s on line 95
185 Deprecated: Non-static method C::r() should not be called statically in %s on line 96
191 Deprecated: Non-static method C::vv() should not be called statically in %s on line 100
203 Deprecated: Non-static method C::vr() should not be called statically in %s on line 104
211 Deprecated: Non-static method C::rv() should not be called statically in %s on line 108
219 Deprecated: Non-static method C::rr() should not be called statically in %s on line 112
224 ---- Pass by ref / pass by val: instance method calls ----
H A DpassByReference_006.phpt40 echo "\n ---- Pass uninitialised arrays & objects by ref: static method call ---\n";
50 echo "\n ---- Pass uninitialised arrays & objects by ref: instance method call ---\n";
91 ---- Pass uninitialised arrays & objects by ref: static method call ---
93 Deprecated: Non-static method C::refs() should not be called statically in %s on line 39
162 ---- Pass uninitialised arrays & objects by ref: instance method call ---
H A DreturnByReference.007.phpt2 Returning a reference from a static method via another static method
H A DreturnByReference.008.phpt2 Returning a reference from a non-static method via another non-static method
H A DforeachLoopObjects.002.phpt99 echo "\n\nIterate over various generations from within an inherited method:\n";
113 echo "\n\nIterate over various generations from within an overridden static method:\n";
246 Iterate over various generations from within an inherited method:
321 Iterate over various generations from within an overridden static method:
H A Dbug23384.phpt22 Deprecated: Non-static method Foo::test() should not be called statically in %sbug23384.php on line…
H A Dbug7515.phpt8 function method() {}
18 $o->root->method();
/PHP-7.2/tests/output/
H A Dob_start_basic_005.phpt2 ob_start(): non-static method as static callbacks.
28 Warning: ob_start(): non-static method C::h() should not be called statically in %s on line 20
/PHP-7.2/tests/classes/
H A Dtype_hinting_004.phpt50 echo "\n\n---> Type hints with callback static method:\n";
99 echo "\n\n---> Type hints with callback instance method:\n";
162 ---> Type hints with callback static method:
173 ---> Type hints with callback instance method:
H A Dvisibility_000a.phpt2 ZE2 A redeclared method must have the same or higher visibility
H A Dvisibility_000b.phpt2 ZE2 A redeclared method must have the same or higher visibility
H A Dvisibility_000c.phpt2 ZE2 A redeclared method must have the same or higher visibility
H A Dvisibility_001a.phpt2 ZE2 A redeclared method must have the same or higher visibility
H A Dvisibility_001b.phpt2 ZE2 A redeclared method must have the same or higher visibility
H A Dvisibility_001c.phpt2 ZE2 A redeclared method must have the same or higher visibility
H A Dvisibility_002a.phpt2 ZE2 A redeclared method must have the same or higher visibility

Completed in 95 milliseconds

12345678910>>...35