Home
last modified time | relevance | path

Searched refs:method (Results 26 – 50 of 847) sorted by relevance

12345678910>>...34

/PHP-7.3/ext/standard/tests/general_functions/
H A Doutput_add_rewrite_var_basic1.phpt29 <form method="get"> </form>
30 <form action="./foo.php" method="get">
31 <form action="//php.net/bar.php" method="get">
32 <form action="http://php.net/bar.php" method="get">
33 <form action="bad://php.net/bar.php" method="get">
34 <form action="//www.php.net/bar.php" method="get">
49 <form method="get"> </form>
50 <form action="./foo.php" method="get"> </form>
71 <form method="get"> </form>
72 <form action="./foo.php" method="get"> </form>
[all …]
H A Doutput_add_rewrite_var_basic2.phpt29 <form method="get"> </form>
30 <form action="./foo.php" method="get"> </a>
31 <form action="//php.net/bar.php" method="get"> </a>
33 <form action="bad://php.net/bar.php" method="get"> </a>
34 <form action="//www.php.net/bar.php" method="get"> </a>
49 <form method="get"> </form>
50 <form action="./foo.php" method="get"> </a>
51 <form action="//php.net/bar.php" method="get"> </a>
71 <form method="get"> </form>
72 <form action="./foo.php" method="get"> </a>
[all …]
/PHP-7.3/ext/standard/tests/array/
H A Darray_map_object3.phpt12 * 1) child class method using parent object
13 * 2) parent class method using child object
14 * 3) child class method using parent class
15 * 4) parent class method using child class
50 echo "-- accessing parent method from child class --\n";
53 echo "-- accessing child method from parent class --\n";
56 echo "-- accessing parent method using child class object --\n";
66 -- accessing parent method from child class --
75 -- accessing child method from parent class --
79 -- accessing parent method using child class object --
[all …]
/PHP-7.3/ext/soap/interop/
H A Dclient_round2.php38 $method = $x->test_name;
39 if ($method != $prev_method) {
40 $prev_method = $method;
42 if ($sel_method == $method) $selected = ' SELECTED';
43 echo "<option value='$method'$selected>$method</option>\n";
49 function endpointTestForm($test, $endpoint, $method, $paramType, $useWSDL) argument
58 methodList($test, $method);
/PHP-7.3/ext/mysqli/tests/
H A Dmysqli_class_mysqli_reflection.phpt40 Inspecting method '__construct'
262 Inspecting method 'close'
278 Inspecting method 'commit'
308 Inspecting method 'connect'
366 Inspecting method 'debug'
508 Inspecting method 'init'
524 Inspecting method 'kill'
632 Inspecting method 'ping'
648 Inspecting method 'poll'
722 Inspecting method 'query'
[all …]
/PHP-7.3/Zend/tests/
H A Dbug50383.phpt7 public static function __callStatic($method, $args) {
8 throw new Exception("Missing static method '$method'\n");
10 public function __call($method, $args) {
11 throw new Exception("Missing method '$method'\n");
39 Missing static method 'ThrowException'
72 Missing method 'foo'
H A Dmethod_argument_binding.phpt2 Edge cases in compile-time method argument binding
7 private function method($x) {}
13 $this->method($x);
19 public function method(&$x) {
27 private final function method(&$x) {
36 $this->method($x);
H A Dindirect_call_array_005.phpt2 Dynamic static call to instance method should throw.
11 public function method()
18 $callback = ['TestClass', 'method'];
22 Deprecated: Non-static method TestClass::method() should not be called statically in %s on line %d
26 #0 %s(%d): TestClass::method()
H A Dindirect_call_string_003.phpt2 Dynamic static call to instance method should throw.
11 public function method()
18 $callback = 'TestClass::method';
22 Deprecated: Non-static method TestClass::method() should not be called statically in %s on line %d
26 #0 %s(%d): TestClass::method()
H A Dbug62441.phpt7 function method(stdClass $o);
12 function method(stdClass $o) { }
15 (new Foo)->method(new \stdClass);
19 Fatal error: Declaration of ns\Foo::method(ns\stdClass $o) must be compatible with Iface::method(st…
H A Dbug54910.phpt6 public function __call($method, $args) {
7 if (stripos($method, 'get') === 0) {
10 die("No such method - '$method'\n");
28 No such method - 'noSuchMethod'
H A Dbug69124.phpt11 function test(&$instance, &$method) {
12 $instance->{$method}();
16 $method = "bar";
18 test($instance, $method);
/PHP-7.3/Zend/tests/closures/
H A Dclosure_from_callable_non_static_statically.phpt2 Testing Closure::fromCallable() functionality: Getting non-static method statically
7 public function method() {
12 $fn = Closure::fromCallable(['A', 'method']);
20 Failed to create closure from callable: non-static method A::method() should not be called statical…
/PHP-7.3/ext/spl/tests/
H A Dspl_autoload_007.phpt60 Function 'MyAutoLoader::notExist' not found (class 'MyAutoLoader' does not have a method 'notExist')
63 Function 'MyAutoLoader::noAccess' not callable (cannot access protected method MyAutoLoader::noAcce…
69 Function 'MyAutoLoader::dynaLoad' not callable (non-static method MyAutoLoader::dynaLoad() should n…
77 Passed array does not specify an existing static method (class 'MyAutoLoader' does not have a metho…
85 Passed array does not specify a callable static method (cannot access protected method MyAutoLoader…
101 Passed array specifies a non static method but no object (non-static method MyAutoLoader::dynaLoad(…
110 Passed array does not specify an existing method (class 'MyAutoLoader' does not have a method 'notE…
119 Passed array does not specify a callable method (cannot access protected method MyAutoLoader::noAcc…
/PHP-7.3/ext/zip/lib/
H A Dzip_set_file_compression.c39 zip_set_file_compression(zip_t *za, zip_uint64_t idx, zip_int32_t method, zip_uint32_t flags) in zip_set_file_compression() argument
54 if (method != ZIP_CM_DEFAULT && method != ZIP_CM_STORE && method != ZIP_CM_DEFLATE) { in zip_set_file_compression()
65 if (method == old_method) { in zip_set_file_compression()
82 e->changes->comp_method = method; in zip_set_file_compression()
/PHP-7.3/ext/openssl/tests/
H A Dopenssl_decrypt_basic.phpt8 $method = "AES-128-CBC";
11 $ivlen = openssl_cipher_iv_length($method);
16 $encrypted = openssl_encrypt($data, $method, $password, 0, $iv);
17 $output = openssl_decrypt($encrypted, $method, $password, 0, $iv);
19 $encrypted = openssl_encrypt($data, $method, $password, OPENSSL_RAW_DATA, $iv);
20 $output = openssl_decrypt($encrypted, $method, $password, OPENSSL_RAW_DATA, $iv);
24 $encrypted = openssl_encrypt($padded_data, $method, $password, OPENSSL_RAW_DATA|OPENSSL_ZERO_PADDIN…
25 $output = openssl_decrypt($encrypted, $method, $password, OPENSSL_RAW_DATA|OPENSSL_ZERO_PADDING, $i…
/PHP-7.3/ext/xmlrpc/tests/
H A Dbug47818.phpt10 private $method;
13 $this->method = $method_name;
14 print "Inside impl(): {$this->method}\n";
27 function getMethod() {return $this->method;}
34 $method = $x->getMethod();
36 print "Global scope: $method\n";
/PHP-7.3/ext/date/tests/
H A DDateTimeZone_clone_basic4.phpt2 Test clone of DateTimeZone derived objects with __clone magic method
10 echo "-- DateTimeExt1 __clone magic method called --\n";
14 echo "*** Testing clone of objects derived from DateTimeZone class with __clone magic method***\n";
19 //verify clone by calling method on new object
25 *** Testing clone of objects derived from DateTimeZone class with __clone magic method***
26 -- DateTimeExt1 __clone magic method called --
H A DDateTime_clone_basic4.phpt2 Test clone of DateTime derived objects with __clone magic method
13 echo "-- DateTimeExt1 __clone magic method called --\n";
17 echo "*** Testing clone of objects derived from DateTime class with __clone magic method***\n";
22 //verify clone by calling method on new object
28 *** Testing clone of objects derived from DateTime class with __clone magic method***
29 -- DateTimeExt1 __clone magic method called --
/PHP-7.3/ext/reflection/tests/
H A Dbug38465.phpt23 foreach ($clazz->getMethods() as $method) {
24 foreach ($method->getParameters() as $param) {
26 …echo $method->getDeclaringClass()->getName(), '::', $method->getName(), '($', $param->getName(), '…
36 foreach ($clazz->getMethods() as $method) {
37 foreach ($method->getParameters() as $param) {
39 …echo $method->getDeclaringClass()->getName(), '::', $method->getName(), '($', $param->getName(), '…
H A Dbug33389.phpt43 Method [ <user> public method foo1 ] {
51 Method [ <user> public method foo2 ] {
59 Method [ <user> public method foo3 ] {
67 Method [ <user> public method foo4 ] {
75 Method [ <user> public method foo5 ] {
83 Method [ <user> public method bar ] {
91 Method [ <user> public method foo ] {
/PHP-7.3/scripts/dev/
H A Dsearch_underscores.php57 foreach(get_class_methods($c) as $method) {
59 if (strpos(substr($method, substr($method, 0, 2) != "__" ? 0 : 2), "_") !== false) {
61 $extensions[$ext][$c][] = $method;
89 foreach($methods as $method) {
90 echo " Method: $method\n";
/PHP-7.3/sapi/cli/
H A Dphp_http_parser.c347 parser->method = PHP_HTTP_HEAD; in php_http_parser_execute()
549 parser->method = PHP_HTTP_CHECKOUT; in php_http_parser_execute()
551 parser->method = PHP_HTTP_COPY; in php_http_parser_execute()
557 parser->method = PHP_HTTP_MOVE; in php_http_parser_execute()
561 parser->method = PHP_HTTP_MERGE; in php_http_parser_execute()
563 parser->method = PHP_HTTP_MSEARCH; in php_http_parser_execute()
572 parser->method = PHP_HTTP_PUT; in php_http_parser_execute()
574 parser->method = PHP_HTTP_PATCH; in php_http_parser_execute()
576 parser->method = PHP_HTTP_SEARCH; in php_http_parser_execute()
580 parser->method = PHP_HTTP_PROPPATCH; in php_http_parser_execute()
[all …]
/PHP-7.3/sapi/phpdbg/
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.3/Zend/tests/nullable_types/
H A Dcontravariant_nullable_return_fails.phpt7 function method(): int;
11 function method(): ?int;
14 Fatal error: Declaration of B::method(): ?int must be compatible with A::method(): int in %s on lin…

Completed in 33 milliseconds

12345678910>>...34