/PHP-7.2/Zend/tests/grammar/ |
H A D | semi_reserved_001.phpt | 8 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; } 137 $obj->function(); [all …]
|
H A D | semi_reserved_002.phpt | 8 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; } 135 Obj::function(); [all …]
|
H A D | regression_001.phpt | 7 public static function function(){ echo __METHOD__, PHP_EOL; } 10 Foo::function(); 13 function(); 16 function(); 20 function( 26 Foo::function 27 Foo::function 28 Foo::function 29 Foo::function
|
/PHP-7.2/Zend/tests/ |
H A D | bug54358.phpt | 6 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 D | temporary_cleaning_013.phpt | 36 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 D | bug54039.phpt | 5 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) { 46 Inner function reckons $v is 1 48 Inner function reckons $v is 2 50 Inner function reckons $v is 0 52 Inner function reckons $v is 1 [all …]
|
H A D | get_class_methods_003.phpt | 7 function aa(); 8 function bb(); 9 static function cc(); 13 public function a() { } 14 protected function b() { } 15 private function c() { } 23 public function aa() { } 24 public function bb() { } 26 static function cc() { } 28 public function __construct() { [all …]
|
/PHP-7.2/ext/soap/tests/soap12/ |
H A D | soap12-test.inc | 5 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-7.2/tests/func/ |
H A D | 004.phpt | 2 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-7.2/Zend/tests/closures/ |
H A D | closure_from_callable.inc | 3 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-7.2/ext/standard/tests/array/ |
H A D | bug34227.phpt | 8 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-7.2/ext/spl/tests/ |
H A D | bug54384.phpt | 6 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-7.2/Zend/tests/type_declarations/ |
H A D | parameter_type_variance.phpt | 7 function testParentClass(Foo $foo) {} 8 function testBothClass(Foo $foo) {} 9 function testChildClass($foo) {} 10 function testNoneClass($foo) {} 13 function testBothBuiltin(int $foo) {} 14 function testChildBuiltin($foo) {} 15 function testNoneBuiltin($foo) {} 19 function testParentClass($foo) {} 20 function testBothClass(Foo $foo) {} 22 function testNoneClass($foo) {} [all …]
|
/PHP-7.2/ext/phar/phar/ |
H A D | phar.inc | 23 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-7.2/tests/security/ |
H A D | open_basedir.inc | 60 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-7.2/ext/soap/tests/interop/Round2/Base/ |
H A D | round2_base.inc | 4 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-7.2/ext/reflection/tests/ |
H A D | ReflectionType_possible_types.phpt | 7 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 D | ReflectionFunction_getNamespaceName.phpt | 6 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-7.2/tests/classes/ |
H A D | visibility_003c.phpt | 7 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 D | visibility_004c.phpt | 7 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 D | interface_doubled.phpt | 7 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 D | visibility_000c.phpt | 7 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 D | visibility_001c.phpt | 7 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 D | visibility_002c.phpt | 7 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 D | visibility_003a.phpt | 7 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 …]
|