Home
last modified time | relevance | path

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

12345678910>>...24

/PHP-8.0/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();
22 Foo\Bar\Foo
23 Foo\Bar\Foo
24 Foo\Bar\Foo
25 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();
30 Method - Foo\Foo::__construct
32 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();
23 Method - Foo::__construct
24 Func - Foo\Bar
25 Method - Foo\Foo::__construct
26 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();
22 Foo
23 Foo
24 Foo\Bar\Foo
25 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();
24 test\ns1\Foo
25 test\ns1\Foo
26 test\ns1\Foo
27 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();
30 test\ns1\Foo
31 test\ns1\Foo
32 test\ns1\Foo
33 test\ns1\Foo
34 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_trailing_comma_01.phpt5 namespace Foo {
6 const FOO_CONST = "Foo const\n";
8 echo "Foo func\n";
12 echo "Foo class\n";
17 use Foo\{
28 Foo const
29 Foo func
30 Foo class
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"
/PHP-8.0/Zend/tests/type_declarations/
H A Dtyped_properties_023.phpt10 class Foo {
15 var_dump(Foo::$i = 1);
16 var_dump(Foo::$i);
18 var_dump(Foo::$i);
20 var_dump(Foo::$s);
21 var_dump(Foo::$s = Foo::$i++);
22 var_dump(Foo::$s, Foo::$i);
25 var_dump(Foo::$s);
27 var_dump(Foo::$i);
30 var_dump(Foo::$i);
[all …]
H A Dtyped_properties_068.phpt11 class Foo {
16 Foo::$i = &ref(5);
17 var_dump(Foo::$i);
19 $i = &Foo::$i;
26 Foo::$i = "4";
35 Foo::$i = null;
39 Foo::$s = &ref(5);
51 Foo::$i = &Foo::$s;
53 var_dump(Foo::$i, Foo::$s);
56 Foo::$s = &Foo::$i;
[all …]
H A Dtyped_properties_070.phpt12 class Foo {
17 Foo::$s .= "1";
18 var_dump(Foo::$s);
20 Foo::$s += 2;
21 var_dump(Foo::$s);
23 Foo::$s = &stringRef();
24 Foo::$s .= 2;
25 var_dump(Foo::$s);
28 var_dump(Foo::$i);
33 var_dump(Foo::$i);
[all …]
H A Dtyped_properties_075.phpt8 class Foo {
13 Foo::$bar++;
18 var_dump(Foo::$bar);
21 Foo::$bar += 1;
26 var_dump(Foo::$bar);
29 ++Foo::$bar;
34 var_dump(Foo::$bar);
37 Foo::$bar = Foo::$bar + 1;
42 var_dump(Foo::$bar);
48 string(53) "Cannot assign float to property Foo::$bar of type int"
[all …]
H A Dparameter_type_variance.phpt6 class Foo {
7 function testParentClass(Foo $foo) {}
8 function testBothClass(Foo $foo) {}
13 class Bar extends Foo {
15 function testBothClass(Foo $foo) {}
16 function testChildClass(Foo $foo) {}
22 Fatal error: Declaration of Bar::testChildClass(Foo $foo) must be compatible with Foo::testChildCla…
/PHP-8.0/Zend/tests/nullsafe_operator/
H A D001.phpt6 class Foo {
26 $foo = new Foo();
35 $foo = new Foo();
60 string(11) "Foo::null()"
62 string(11) "Foo::null()"
64 string(11) "Foo::null()"
66 string(11) "Foo::null()"
68 string(11) "Foo::null()"
70 string(11) "Foo::null()"
72 string(11) "Foo::null()"
[all …]
H A D003.phpt6 class Foo {
15 $foo = new Foo();
31 var_dump((new Foo)?->bar);
32 var_dump((new Foo)?->baz);
33 var_dump((new Foo)?->qux());
35 var_dump((new Foo)?->quux());
48 Warning: Undefined property: Foo::$baz in %s.php on line 20
51 string(36) "Call to undefined method Foo::quux()"
54 Warning: Undefined property: Foo::$baz in %s.php on line 29
57 string(36) "Call to undefined method Foo::quux()"
/PHP-8.0/Zend/tests/grammar/
H A Dregression_007.phpt6 class Foo {
26 Foo::{'new'}();
28 var_dump(Foo::use);
33 Foo::new
34 Foo::new
35 Foo::new
36 Foo::self
37 Foo::new
38 Foo::self
39 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::
19 string(3) "Foo"
20 string(3) "Foo"
21 string(3) "Foo"
22 string(3) "Foo"
H A Dregression_001.phpt6 class Foo {
10 Foo::function();
12 Foo::
15 Foo::
19 Foo::
27 Foo::function
28 Foo::function
29 Foo::function
30 Foo::function
/PHP-8.0/ext/tokenizer/tests/
H A Dnamespaced_names.phpt8 Foo
9 Foo\Bar
10 \Foo\Bar
11 namespace\Foo
12 Foo \ Bar
23 T_STRING: "Foo"
26 T_NAME_QUALIFIED: "Foo\Bar"
29 T_NAME_FULLY_QUALIFIED: "\Foo\Bar"
32 T_NAME_RELATIVE: "namespace\Foo"
35 T_STRING: "Foo"
/PHP-8.0/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-8.0/Zend/tests/type_declarations/mixed/inheritance/
H A Dmixed_return_inheritance_success2.phpt6 class Foo
11 class Bar1 extends Foo
16 class Bar2 extends Foo
21 class Bar3 extends Foo
26 class Bar4 extends Foo
31 class Bar5 extends Foo
36 class Bar6 extends Foo
41 class Bar7 extends Foo
46 class Bar8 extends Foo
51 class Bar9 extends Foo
/PHP-8.0/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<1> "Foo\\var_dump" …
30 L9-9 Foo\Bar::baz() %s - %s + 1 ops
35 L18 #0 NEW "Foo\\Bar" @0
37 L18 #2 INIT_METHOD_CALL<1> @0 "Foo"
48 namespace Foo {
50 function Foo($bar) {
63 (new \Foo\Bar)->Foo("test");

Completed in 30 milliseconds

12345678910>>...24