Home
last modified time | relevance | path

Searched refs:function (Results 26 – 50 of 5010) sorted by relevance

12345678910>>...201

/PHP-7.4/tests/classes/
H A Dvisibility_004b.phpt7 function f0() {}
8 function f1() {}
9 public function f2() {}
10 protected function f3() {}
11 private function f4() {}
17 function f0() {}
18 public function f1() {}
19 public function f2() {}
20 protected function f3() {}
21 private function f4() {}
[all …]
H A Dinterface_doubled.phpt7 function f_a();
11 function f_b();
15 function f_c();
19 function f_d();
23 function f_d();
38 function f_a() {}
39 function f_b() {}
40 function f_c() {}
41 function f_d() {}
42 function f_e() {}
[all …]
H A Dvisibility_000a.phpt7 function f0() {}
8 function f1() {}
9 public function f2() {}
10 protected function f3() {}
11 private function f4() {}
17 function f0() {}
18 public function f1() {}
19 public function f2() {}
20 protected function f3() {}
21 private function f4() {}
[all …]
H A Dvisibility_001b.phpt7 function f0() {}
8 function f1() {}
9 public function f2() {}
10 protected function f3() {}
11 private function f4() {}
17 function f0() {}
18 public function f1() {}
19 public function f2() {}
20 protected function f3() {}
21 private function f4() {}
[all …]
H A Dvisibility_000b.phpt7 function f0() {}
8 function f1() {}
9 public function f2() {}
10 protected function f3() {}
11 private function f4() {}
17 function f0() {}
18 public function f1() {}
19 public function f2() {}
20 protected function f3() {}
21 private function f4() {}
[all …]
H A Dvisibility_001a.phpt7 function f0() {}
8 function f1() {}
9 public function f2() {}
10 protected function f3() {}
11 private function f4() {}
17 function f0() {}
18 public function f1() {}
19 public function f2() {}
20 protected function f3() {}
21 private function f4() {}
[all …]
H A Dvisibility_002a.phpt7 function f0() {}
8 function f1() {}
9 public function f2() {}
10 protected function f3() {}
11 private function f4() {}
17 function f0() {}
18 public function f1() {}
19 public function f2() {}
20 protected function f3() {}
21 private function f4() {}
[all …]
H A Dvisibility_002b.phpt7 function f0() {}
8 function f1() {}
9 public function f2() {}
10 protected function f3() {}
11 private function f4() {}
17 function f0() {}
18 public function f1() {}
19 public function f2() {}
20 protected function f3() {}
21 private function f4() {}
[all …]
H A Dvisibility_003b.phpt7 function f0() {}
8 function f1() {}
9 public function f2() {}
10 protected function f3() {}
11 private function f4() {}
17 function f0() {}
18 public function f1() {}
19 public function f2() {}
20 protected function f3() {}
21 private function f4() {}
[all …]
/PHP-7.4/ext/reflection/tests/
H A DReflectionClass_getNamespaceName.phpt9 $function = new \ReflectionClass('stdClass');
10 var_dump($function->inNamespace());
11 var_dump($function->getName());
12 var_dump($function->getNamespaceName());
13 var_dump($function->getShortName());
15 $function = new \ReflectionClass('A\\B\\Foo');
16 var_dump($function->inNamespace());
17 var_dump($function->getName());
18 var_dump($function->getNamespaceName());
19 var_dump($function->getShortName());
/PHP-7.4/Zend/tests/
H A Dbug40236.inc2 function func1() { }
3 function func2() { }
4 function func3() { }
5 function func4() { }
6 function func5() { }
7 function func6() { }
8 function func7() { }
H A Ddebug_backtrace_limit.phpt5 function a() {
9 function b() {
13 function c() {
29 [function] => c
43 [function] => c
54 [function] => b
68 [function] => c
79 [function] => b
90 [function] => a
104 [function] => c
[all …]
H A Dbug29104.phpt7 function g()
9 echo "function g - begin\n";
11 function f()
13 echo "function f\n";
16 echo "function g - end\n";
25 function g - begin
26 function g - end
27 function f
H A Dmethod_exists_002.phpt7 static public function stat_a2() {
9 static private function stat_b2() {
11 static protected function stat_c2() {
14 private function method_a() {
16 protected function method_b() {
18 public function method_c() {
25 static public function stat_a() {
27 static private function stat_b() {
32 private function method_a() {
34 protected function method_b() {
[all …]
/PHP-7.4/ext/opcache/tests/
H A Dpreload.inc2 function f1() {
6 function f2() {
11 function foo();
12 function bar();
15 function foo();
19 function bar() { }
23 function foo() { }
27 static function foo() {
33 static function bar() {
48 function get_anon() {
[all …]
/PHP-7.4/ext/standard/tests/array/
H A Darray_walk_recursive_variation7.phpt2 Test array_walk_recursive() function : usage variations - anonymous callback function
23 echo "-- Anonymous function with one argument --\n";
26 echo "-- Anonymous function with two arguments --\n";
29 echo "-- Anonymous function with three arguments --\n";
32 echo "-- Anonymous function with one more argument --\n";
35 echo "-- Anonymous function with null argument --\n";
41 -- Anonymous function with one argument --
51 -- Anonymous function with two arguments --
65 -- Anonymous function with three arguments --
83 -- Anonymous function with one more argument --
[all …]
H A Darray_walk_variation7.phpt2 Test array_walk() function : usage variations - anonymous callback function
23 echo "-- Anonymous function with one argument --\n";
26 echo "-- Anonymous function with two arguments --\n";
29 echo "-- Anonymous function with three arguments --\n";
32 echo "-- Anonymous function with one more argument --\n";
35 echo "-- Anonymous function with null argument --\n";
41 -- Anonymous function with one argument --
51 -- Anonymous function with two arguments --
65 -- Anonymous function with three arguments --
83 -- Anonymous function with one more argument --
[all …]
H A Darray_map_variation10.phpt2 Test array_map() function : usage variations - anonymous callback function
14 echo "*** Testing array_map() : anonymous callback function ***\n";
19 echo "-- anonymous function with all parameters and body --\n";
29 echo "-- anonymous function with NULL parameter --\n";
30 var_dump( array_map( function() { return NULL; }, $array1));
32 echo "-- anonymous function with NULL body --\n";
33 var_dump( array_map( function($a) { }, $array1));
41 *** Testing array_map() : anonymous callback function ***
42 -- anonymous function with all parameters and body --
68 -- anonymous function with NULL parameter --
[all …]
H A Darray_walk_variation8.phpt2 Test array_walk() function : usage variations - buit-in function as callback
6 * Description: Apply a user function to every member of an array
11 * Passing different buit-in functionns as callback function
12 * pow function
13 * min function
21 echo "-- With 'pow' built-in function --\n";
24 echo "-- With 'min' built-in function --\n";
33 *** Testing array_walk() : built-in function as callback ***
34 -- With 'pow' built-in function --
36 -- With 'min' built-in function --
[all …]
H A Darray_walk_recursive_variation8.phpt2 Test array_walk_recursive() function : usage variations - buit-in function as callback
6 * Description: Apply a user function to every member of an array
11 * Passing different buit-in functionns as callback function
12 * pow function
13 * min function
21 echo "-- With 'pow' built-in function --\n";
24 echo "-- With 'min' built-in function --\n";
33 *** Testing array_walk_recursive() : built-in function as callback ***
34 -- With 'pow' built-in function --
36 -- With 'min' built-in function --
[all …]
/PHP-7.4/Zend/tests/type_declarations/
H A Dadd_return_type.phpt7 public function a();
8 public function b();
9 public function c();
10 public function d();
14 public function a() : stdClass;
15 public function c() : callable;
16 public function b() : array;
17 public function d() : int;
/PHP-7.4/tests/lang/
H A DreturnByReference.006.phpt2 Returning a reference from a function via another function
5 function returnConstantByValue() {
9 function &returnConstantByRef() {
13 function &returnVariableByRef() {
17 function &returnFunctionCallByRef($functionToCall) {
21 echo "\n---> 1. Via a return by ref function call, assign by reference the return value of a functi…
28 echo "\n---> 2. Via a return by ref function call, assign by reference the return value of a functi…
35 echo "\n---> 3. Via a return by ref function call, assign by reference the return value of a functi…
44 ---> 1. Via a return by ref function call, assign by reference the return value of a function that …
50 ---> 2. Via a return by ref function call, assign by reference the return value of a function that …
[all …]
/PHP-7.4/ext/intl/tests/
H A Dut_common.inc8 function ut_run()
37 function dump( $val )
46 function ut_coll_create( $locale )
86 function ut_coll_get_strength( $coll )
118 function ut_coll_get_default()
122 function ut_coll_set_default( $coll )
197 function ut_nfmt_get_pattern( $fmt )
231 function ut_loc_get_default( )
243 function ut_loc_get_script( $locale )
247 function ut_loc_get_region( $locale )
[all …]
/PHP-7.4/ext/soap/tests/interop/Round4/GroupI/
H A Dround4_groupI_xsd.inc4 function echoString($inputString)
13 function echoInteger($inputInteger)
18 function echoFloat($inputFloat)
23 function echoVoid()
27 function echoBase64($inputBase64)
36 function echoDate($timeInstant)
86 function echoHexBinary($hb)
95 function echoDecimal($dec)
147 function echoChoice($input)
156 function echoEnum($input)
[all …]
/PHP-7.4/ext/oci8/tests/
H A Dreflection1.phpt232 Function [ <internal%s> function oci_cancel ] {
239 Function [ <internal%s> function oci_fetch ] {
316 Function [ <internal%s> function oci_parse ] {
331 Function [ <internal%s> function oci_result ] {
360 Function [ <internal%s> function oci_close ] {
400 Function [ <internal%s> function oci_error ] {
777 Function [ <internal%s> function ocicancel ] {
784 Function [ <internal%s> function ocifetch ] {
823 Function [ <internal%s> function ociparse ] {
874 Function [ <internal%s> function ocilogon ] {
[all …]

Completed in 123 milliseconds

12345678910>>...201