Home
last modified time | relevance | path

Searched refs:Foo (Results 1 – 25 of 346) sorted by relevance

12345678910>>...14

/PHP-7.1/Zend/tests/
H A Dns_025.phpt5 namespace Foo\Bar;
7 class Foo {
16 $x = new Foo;
17 Foo::Bar();
18 $x = new \Foo\Bar\Foo;
19 \Foo\Bar\Foo::Bar();
21 Foo\Bar\Foo
22 Foo\Bar\Foo
23 Foo\Bar\Foo
24 Foo\Bar\Foo
H A Dns_026.phpt7 namespace Foo;
9 class Foo {
22 $x = new Foo;
23 \Foo\Bar();
24 $x = new \Foo\Foo;
25 \Foo\Foo::Bar();
26 \Foo\Bar();
27 Foo\Bar();
29 Method - Foo\Foo::__construct
31 Method - Foo\Foo::__construct
[all …]
H A Dns_028.phpt7 class Foo {
16 $x = new Foo;
17 Foo\Bar();
18 $x = new Foo\Foo;
19 Foo\Foo::Bar();
20 \Foo\Bar();
22 Method - Foo::__construct
23 Func - Foo\Bar
24 Method - Foo\Foo::__construct
25 Method - Foo\Foo::Bar
[all …]
H A Dns_027.phpt7 class Foo {
16 $x = new Foo;
17 Foo::Bar();
18 $x = new Foo\Bar\Foo;
19 Foo\Bar\Foo::Bar();
21 Foo
22 Foo
23 Foo\Bar\Foo
24 Foo\Bar\Foo
H A Dns_002.phpt7 class Foo {
13 use test\ns1\Foo as Bar;
17 Foo::bar();
18 \test\ns1\Foo::bar();
20 ns2\Foo::bar();
21 ns1\Foo::bar();
23 test\ns1\Foo
24 test\ns1\Foo
25 test\ns1\Foo
26 test\ns1\Foo
[all …]
H A Dns_001.phpt7 class Foo {
22 $x = new Foo;
24 Foo::baz();
25 $y = new \test\ns1\Foo;
27 \test\ns1\Foo::baz();
29 test\ns1\Foo
30 test\ns1\Foo
31 test\ns1\Foo
32 test\ns1\Foo
33 test\ns1\Foo
[all …]
H A Dns_010.phpt7 class Foo {
17 new Foo();
18 new Y\Foo();
19 new \X\Foo();
20 Foo::bar();
21 Y\Foo::bar();
22 \X\Foo::bar();
23 echo Foo::C;
24 echo Y\Foo::C;
25 echo \X\Foo::C;
[all …]
H A Dclass_name_as_scalar.phpt6 namespace Foo\Bar {
37 Foo\Bar\One;
56 string(11) "Foo\Bar\Moo"
58 string(11) "Foo\Bar\One"
64 string(11) "Foo\Bar\Two"
65 string(11) "Foo\Bar\Two"
66 string(11) "Foo\Bar\One"
67 string(11) "Foo\Bar\Baz"
69 string(11) "Foo\Bar\Two"
71 string(11) "Foo\Bar\One"
[all …]
H A Dns_095.phpt6 namespace Foo\Bar {
22 use \Foo\Bar\{ClassA, ClassB, ClassC};
23 use function \Foo\Bar\{fn_a, fn_b, fn_c};
24 use const \Foo\Bar\{CONST_A, CONST_B, CONST_C};
40 string(14) "Foo\Bar\ClassA"
41 string(14) "Foo\Bar\ClassB"
42 string(14) "Foo\Bar\ClassC"
43 string(12) "Foo\Bar\fn_a"
44 string(12) "Foo\Bar\fn_b"
45 string(12) "Foo\Bar\fn_c"
H A Dns_034.phpt7 class Foo {
10 function f1($x=Foo::C) {
13 function f2($x=B\Foo::C) {
16 function f3($x=\A\Foo::C) {
19 echo Foo::C;
20 echo B\Foo::C;
21 echo \A\Foo::C;
H A Dlsb_010.phpt6 class Foo {
7 protected static $className = 'Foo';
19 class FooChild extends Foo {
23 register_shutdown_function(array('Foo', 'bar'));
26 $foo = new Foo();
33 Foo::__construct
35 Foo::__destruct
37 Foo::bar
H A Dint_static_prop_name.phpt6 class Foo {
18 var_dump(Foo::${42});
24 var_dump(Foo::${(int) 42});
30 var_dump(Foo::${(int) $n});
40 Access to undeclared static property: Foo::$42
41 Access to undeclared static property: Foo::$42
42 Access to undeclared static property: Foo::$42
H A Dbug69676_2.phpt6 class Foo {
7 const A = 'Foo::A';
9 const C = 'Foo::C';
13 class Bar extends Foo {
22 string(17) "Foo::A and Foo::C"
H A Dbug41372.phpt5 $Foo = array('val1', 'val2', 'val3');
6 end($Foo);
7 echo key($Foo),"\n";
8 $MagicInternalPointerResetter = $Foo;
9 echo key($Foo),"\n";
H A Dns_092.phpt5 namespace Foo\Bar {
16 use function Foo\Bar\{
23 use const Foo\Bar\{
29 use Foo\Bar\{ A, B, const BAR as BOZ };
52 Foo\Bar\A::__construct
53 Foo\Bar\B::__construct
62 Foo\Bar\fiz
63 Foo\Bar\biz
64 Foo\Bar\buz
66 Fatal error: Uncaught Error: Call to undefined function Foo\Bar\A() in %sns_092.php:45
H A Ddynamic_call_to_ref_returning_function.phpt6 namespace Foo;
12 var_dump(call_user_func('Foo\retRef', 42));
13 var_dump(call_user_func_array('Foo\retRef', [42]));
20 var_dump((new \ReflectionFunction('Foo\retRef'))->invoke(42));
21 var_dump((new \ReflectionFunction('Foo\retRef'))->invokeArgs([42]));
28 var_dump((new \ReflectionMethod('Foo\Bar', 'method'))->invoke(new Bar, 42));
29 var_dump((new \ReflectionMethod('Foo\Bar', 'method'))->invokeArgs(new Bar, [42]));
/PHP-7.1/Zend/tests/grammar/
H A Dregression_007.phpt6 class Foo {
26 Foo::{'new'}();
28 var_dump(Foo::use);
32 Foo::new
33 Foo::new
34 Foo::new
35 Foo::self
36 Foo::new
37 Foo::self
38 Foo::self
[all …]
H A Dregression_002.phpt6 class Foo {}
8 var_dump(Foo::class);
10 var_dump(Foo:: class);
12 var_dump(Foo:: CLASS);
14 var_dump(Foo::
18 string(3) "Foo"
19 string(3) "Foo"
20 string(3) "Foo"
21 string(3) "Foo"
H A Dregression_001.phpt6 class Foo {
10 Foo::function();
12 Foo::
15 Foo::
19 Foo::
26 Foo::function
27 Foo::function
28 Foo::function
29 Foo::function
H A Dsemi_reserved_006.phpt27 class Foo
49 (new Foo)->catch();
50 (new Foo)->foreach();
51 Foo::throw();
52 Foo::self();
53 var_dump(Foo::$list['a']);
54 Foo::attempt();
55 Foo::die();
56 Foo::bye();
57 Foo::byebye();
[all …]
/PHP-7.1/sapi/cgi/tests/
H A D011.phpt29 header("X-Foo: Bar");
32 header("X-Foo: Bar");
37 header("X-Foo: Bar");
41 header("X-Foo: Bar");
45 header("X-Foo: Bar");
55 header("X-Foo: Bar");
83 header("X-Foo: Bar");
87 X-Foo: Bar
108 X-Foo: Bar
120 X-Foo: Bar
[all …]
/PHP-7.1/sapi/phpdbg/tests/
H A Dbreakpoints_008.phpt5 b \Foo\Bar::Foo
12 prompt> [Breakpoint exists at Foo\Bar::Foo]
23 namespace Foo {
25 function Foo($bar) {
32 (new \Foo\Bar)->Foo("test");
H A Dprint_001.phpt7 p class \Foo\bar
23 prompt> [User Class: Foo\Bar (2 methods)]
24 L5-7 Foo\Bar::Foo() %s - %s + 5 ops
26 L6 #1 INIT_NS_FCALL_BY_NAME "Foo\\var_dump"
30 L9-9 Foo\Bar::baz() %s - %s + 1 ops
37 L18 #2 NEW "Foo\\Bar" @1
39 L18 #4 INIT_METHOD_CALL @1 "Foo"
50 namespace Foo {
52 function Foo($bar) {
65 (new \Foo\Bar)->Foo("test");
/PHP-7.1/sapi/cli/tests/
H A Dphp_cli_server_019.phpt11 header('Bar-Foo: Foo');
29 Foo-Bar: Bar
47 Bar-Foo: Foo
53 ["Foo-Bar"]=>
59 ["Foo-Bar"]=>
65 ["Bar-Foo"]=>
66 string(3) "Foo"
/PHP-7.1/tests/lang/
H A Dbug23384.phpt6 class Foo {
8 function test($x = Foo::HUN) {
10 static $arr = array(Foo::HUN => 'ten');
18 Foo::test();
19 echo Foo::HUN."\n";
22 Deprecated: Non-static method Foo::test() should not be called statically in %sbug23384.php on line…

Completed in 59 milliseconds

12345678910>>...14