Home
last modified time | relevance | path

Searched refs:function (Results 1 – 25 of 4199) sorted by relevance

12345678910>>...168

/PHP-8.0/Zend/tests/
H A Darginfo_zpp_mismatch.inc3 function skipFunction($function): bool {
6 || $function === 'readline'
14 || (is_string($function) && str_starts_with($function, 'ob_'))
16 || $function === 'error_log'
18 || (is_string($function) && str_contains($function, 'connect'))
19 || (is_string($function) && str_starts_with($function, 'snmp'))
20 || (is_array($function) && get_class($function[0]) === mysqli::class
23 || $function === 'mail'
24 || $function === 'mb_send_mail'
25 || $function === 'pcntl_fork'
[all …]
H A Dbug54358.phpt6 public function call($function) {
12 $closure = function() use ($asserter, &$function) {
13 $asserter->call($function = 'md5');
18 var_dump($function);
20 $closure = function() use ($asserter, $function) {
21 $asserter->call($function);
26 var_dump($function);
28 $closure = function() use ($asserter, $function) {
29 $asserter->call($function);
34 var_dump($function);
H A Dmagic_methods_inheritance_rules.phpt10 public function __clone(): void {}
12 public function __debugInfo(): ?array {}
14 public function __get(string $name): mixed {}
16 public function __invoke(mixed $arguments): mixed {}
18 public function __isset(string $name): bool {}
20 public function __serialize(): array {}
26 public function __sleep(): array {}
28 public function __toString(): string {}
32 public function __unset(string $name): void {}
34 public function __wakeup(): void {}
[all …]
H A Dbug54039.phpt5 function test_1() {
9 $f = function() use($v) {
18 function test_2() {
20 $f = function() use($v) {
31 function test_3() {
35 $f = function() use($v) {
47 Inner function reckons $v is 1
49 Inner function reckons $v is 2
51 Inner function reckons $v is 0
53 Inner function reckons $v is 1
[all …]
H A Dtemporary_cleaning_013.phpt36 function __set($x, $y) {}
58 function offsetUnset($x) {}
71 function offsetUnset($x) {}
88 function __set($x, $y) {}
111 function __set($x, $y) {}
154 function __set($x, $y) {}
179 function __set($x, $y) {}
217 function __get($x) {}
225 function offsetGet($x) {}
242 $f = function() {
[all …]
H A Darginfo_zpp_mismatch.phpt12 function test($function) {
13 if (skipFunction($function)) {
18 if (is_string($function)) {
19 echo "Testing $function\n";
21 echo "Testing " . get_class($function[0]) . "::$function[1]\n";
24 @$function();
28 @$function(null);
32 @$function(null, null);
36 @$function(null, null, null);
40 @$function(null, null, null, null);
[all …]
H A Darginfo_zpp_mismatch_strict.phpt14 function test($function) {
15 if (skipFunction($function)) {
20 if (is_string($function)) {
21 echo "Testing $function\n";
23 echo "Testing " . get_class($function[0]) . "::$function[1]\n";
26 @$function();
30 @$function(null);
34 @$function(null, null);
38 @$function(null, null, null);
42 @$function(null, null, null, null);
[all …]
/PHP-8.0/Zend/tests/grammar/
H A Dsemi_reserved_001.phpt8 function empty(){ echo __METHOD__, PHP_EOL; }
9 function callable(){ echo __METHOD__, PHP_EOL; }
10 function class(){ echo __METHOD__, PHP_EOL; }
11 function trait(){ echo __METHOD__, PHP_EOL; }
12 function extends(){ echo __METHOD__, PHP_EOL; }
16 function final(){ echo __METHOD__, PHP_EOL; }
26 function and(){ echo __METHOD__, PHP_EOL; }
34 function or(){ echo __METHOD__, PHP_EOL; }
58 function function(){ echo __METHOD__, PHP_EOL; }
138 $obj->function();
[all …]
H A Dsemi_reserved_002.phpt8 static function empty(){ echo __METHOD__, PHP_EOL; }
9 static function callable(){ echo __METHOD__, PHP_EOL; }
10 static function class(){ echo __METHOD__, PHP_EOL; }
11 static function trait(){ echo __METHOD__, PHP_EOL; }
12 static function extends(){ echo __METHOD__, PHP_EOL; }
14 static function static(){ echo __METHOD__, PHP_EOL; }
16 static function final(){ echo __METHOD__, PHP_EOL; }
34 static function or(){ echo __METHOD__, PHP_EOL; }
58 static function function(){ echo __METHOD__, PHP_EOL; }
136 Obj::function();
[all …]
H A Dregression_001.phpt7 public static function function(){ echo __METHOD__, PHP_EOL; }
10 Foo::function();
13 function();
16 function();
20 function(
27 Foo::function
28 Foo::function
29 Foo::function
30 Foo::function
/PHP-8.0/ext/gmp/tests/
H A Dbug80560.phpt92 $function('0B');
96 $function('0b');
100 $function('0X');
104 $function('0x');
110 $function('0B', 1);
114 $function('0b', 1);
118 $function('0X', 1);
122 $function('0x', 1);
128 $function('0B', 1);
132 $function('0b', 1);
[all …]
/PHP-8.0/ext/soap/tests/soap12/
H A Dsoap12-test.inc5 function echoOk($x) {
9 function echoString($inputString) {
33 function echoStruct($x) {
37 function echoStructArray($x) {
41 function echoVoid() {
53 function echoHexBinary($hb) {
57 function echoDecimal($dec) {
89 function countItems($input) {
97 function returnVoid() {
100 function emptyBody() {
[all …]
/PHP-8.0/tests/func/
H A D004.phpt2 General function test
6 echo "Before function declaration...\n";
17 function some_other_function()
19 echo "This is some other function, to ensure more than just one function works fine...\n";
37 Before function declaration...
38 After function declaration...
52 Done with function...
54 Returned from function call...
61 Done with function...
63 Returned from function call...
[all …]
/PHP-8.0/Zend/tests/closures/
H A Dclosure_from_callable.inc3 function bar($param1)
9 $closure = function($param1) {
13 function test($fn)
56 public function closePrivateValid()
61 public function closePrivateStatic()
66 public function bar($param1)
71 public function getCallable()
97 public function closePrivateInvalid()
158 public function __invoke($param1)
165 function functionAccessProtected()
[all …]
/PHP-8.0/ext/standard/tests/array/
H A Dbug34227.phpt8 function m1()
13 function m2()
18 function m3()
23 function m4()
28 function m5()
33 function m6()
38 function m7()
43 function m8()
76 function p4()
81 function p3()
[all …]
/PHP-8.0/ext/phar/phar/
H A Dphar.inc23 function getSignature()
28 function getAlias()
33 function rewind()
37 function valid()
42 function current()
46 function key()
50 function next()
54 function hasChildren()
59 function getChildren()
71 function getStub()
[all …]
/PHP-8.0/ext/session/tests/
H A Dsession_set_save_handler_error.phpt18 public function __toString() {
97 …ndler(): Argument #1 ($open) must be a valid callback, function "0" not found or invalid function
100 …ndler(): Argument #1 ($open) must be a valid callback, function "1" not found or invalid function
124 …andler(): Argument #1 ($open) must be a valid callback, function "" not found or invalid function
127 …andler(): Argument #1 ($open) must be a valid callback, function "" not found or invalid function
130 …ndler(): Argument #1 ($open) must be a valid callback, function "1" not found or invalid function
133 …andler(): Argument #1 ($open) must be a valid callback, function "" not found or invalid function
136 …ndler(): Argument #1 ($open) must be a valid callback, function "1" not found or invalid function
139 …andler(): Argument #1 ($open) must be a valid callback, function "" not found or invalid function
142 …andler(): Argument #1 ($open) must be a valid callback, function "" not found or invalid function
[all …]
/PHP-8.0/ext/spl/tests/
H A Dbug54384.phpt6 function test($f) {
19 test( function() {
29 test( function() {
39 test( function() {
48 test ( function() {
57 test ( function() {
66 test ( function() {
75 test ( function() {
84 test ( function() {
93 test ( function() {
[all …]
/PHP-8.0/ext/soap/tests/interop/Round2/Base/
H A Dround2_base.inc4 function echoString($inputString)
9 function echoStringArray($inputStringArray)
15 function echoInteger($inputInteger)
25 function echoFloat($inputFloat)
35 function echoStruct($inputStruct)
45 function echoVoid()
50 function echoBase64($b_encoded)
55 function echoDate($timeInstant)
60 function echoHexBinary($hb)
65 function echoDecimal($dec)
[all …]
/PHP-8.0/ext/reflection/tests/
H A DReflectionType_possible_types.phpt7 function(): void {},
8 function(): int {},
9 function(): float {},
10 function(): string {},
11 function(): bool {},
12 function(): array {},
13 function(): callable {},
14 function(): iterable {},
15 function(): StdClass {}
18 foreach ($functions as $function) {
[all …]
H A DReflectionFunction_getNamespaceName.phpt6 function foo() {}
8 $function = new \ReflectionFunction('sort');
9 var_dump($function->inNamespace());
10 var_dump($function->getName());
11 var_dump($function->getNamespaceName());
12 var_dump($function->getShortName());
14 $function = new \ReflectionFunction('A\\B\\foo');
15 var_dump($function->inNamespace());
16 var_dump($function->getName());
17 var_dump($function->getNamespaceName());
[all …]
/PHP-8.0/tests/security/
H A Dopen_basedir.inc60 function create_directories() {
71 function delete_directories() {
76 function test_open_basedir_error($function) {
78 var_dump($function("../bad"));
80 var_dump($function(".."));
81 var_dump($function("../"));
82 var_dump($function("/"));
89 function test_open_basedir_before($function, $change = TRUE) {
104 function test_open_basedir_after($function) {
109 function test_open_basedir_array($function) {
[all …]
/PHP-8.0/tests/classes/
H A Dvisibility_003c.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_004c.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_000c.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 …]

Completed in 51 milliseconds

12345678910>>...168