Home
last modified time | relevance | path

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

12345678910>>...19

/PHP-7.4/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_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"
H A Dbug49908.phpt9 if ($className == 'Foo') {
10 class Foo implements Bar {};
17 new Foo();
21 var_dump(new Foo());
25 string(3) "Foo"
27 string(3) "Foo"
34 #2 [internal function]: {closure}('Foo')
35 #3 %s(%d): spl_autoload_call('Foo')
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
/PHP-7.4/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(48) "Typed property Foo::$bar must be int, float used"
[all …]
H A Dparameter_type_variance.phpt6 class Foo {
7 function testParentClass(Foo $foo) {}
8 function testBothClass(Foo $foo) {}
18 class Bar extends Foo {
20 function testBothClass(Foo $foo) {}
21 function testChildClass(Foo $foo) {}
32 Warning: Declaration of Bar::testChildClass(Foo $foo) should be compatible with Foo::testChildClass…
34 Warning: Declaration of Bar::testChildBuiltin(int $foo) should be compatible with Foo::testChildBui…
/PHP-7.4/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
/PHP-7.4/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.4/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");
/PHP-7.4/sapi/cli/tests/
H A Dphp_cli_server_019.phpt11 header('Bar-Foo: Foo');
24 Foo-Bar: Bar
42 Bar-Foo: Foo
48 ["Foo-Bar"]=>
54 ["Foo-Bar"]=>
60 ["Bar-Foo"]=>
61 string(3) "Foo"

Completed in 23 milliseconds

12345678910>>...19