Searched refs:Foo (Results 1 – 25 of 237) sorted by relevance
12345678910
7 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::__construct31 Method - Foo\Foo::__construct[all …]
5 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\Foo22 Foo\Bar\Foo23 Foo\Bar\Foo24 Foo\Bar\Foo
7 class Foo {16 $x = new Foo;17 Foo\Bar();18 $x = new Foo\Foo;19 Foo\Foo::Bar();20 \Foo\Bar();22 Method - Foo::__construct23 Func - Foo\Bar24 Method - Foo\Foo::__construct25 Method - Foo\Foo::Bar[all …]
7 class Foo {16 $x = new Foo;17 Foo::Bar();18 $x = new Foo\Bar\Foo;19 Foo\Bar\Foo::Bar();21 Foo22 Foo23 Foo\Bar\Foo24 Foo\Bar\Foo
7 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\Foo24 test\ns1\Foo25 test\ns1\Foo26 test\ns1\Foo[all …]
7 class Foo {22 $x = new Foo;24 Foo::baz();25 $y = new \test\ns1\Foo;27 \test\ns1\Foo::baz();29 test\ns1\Foo30 test\ns1\Foo31 test\ns1\Foo32 test\ns1\Foo33 test\ns1\Foo[all …]
7 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 …]
6 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 …]
7 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;
6 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::__construct35 Foo::__destruct37 Foo::bar
5 $Foo = array('val1', 'val2', 'val3');6 end($Foo);7 echo key($Foo),"\n";8 $MagicInternalPointerResetter = $Foo;9 echo key($Foo),"\n";
7 class Foo {20 use test\ns1\Foo;21 use test\ns1\Foo as Bar;25 Foo::bar();30 test\ns1\Foo31 test\ns1\Foo
5 class Foo {6 const A = Foo::B;7 const B = Foo::A;9 echo Foo::A;12 Fatal error: Cannot declare self-referencing constant 'Foo::B' in %sbug41633_3.php on line %d
7 class Foo {9 echo "Foo::aPrivateMethod() called.\n";13 echo "Foo::aProtectedMethod() called.\n";18 class Bar extends Foo {30 Foo::aProtectedMethod() called.31 Foo::aPrivateMethod() called.
8 public $Foo = 1;39 ["Foo"]=>47 ["Foo"]=>52 ["Foo"]=>63 ["Foo"]=>69 ["Foo"]=>
6 use Foo\Bar\Foo as stdClass;10 Foo\Bar\Foo
8 class Foo {22 $mapWithoutConst = array(Foo::ONE => 'one', Foo::TWO => 'two',);28 var_dump(Foo::$mapWithConst[1]);29 var_dump(Foo::$mapWithConst1[1]);30 var_dump(Foo::$mapWithConst2[1]);31 var_dump(Foo::$mapWithoutConst[1]);
9 if ($className == 'Foo') {10 class Foo implements Bar {};16 new Foo;20 %unicode|string%(3) "Foo"26 #1 %s(13): __autoload('Foo')
29 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: Bar108 X-Foo: Bar120 X-Foo: Bar[all …]
11 header('Bar-Foo: Foo');29 Foo-Bar: Bar46 Bar-Foo: Foo52 ["Foo-Bar"]=>58 ["Foo-Bar"]=>64 ["Bar-Foo"]=>65 string(3) "Foo"
5 trait Foo {6 public function Foo() {11 use Foo;16 $rfoofoo = new ReflectionMethod('Foo::Foo');19 $rbarfoo = new ReflectionMethod('Bar::Foo');
8 class Foo {11 function Foo() {12 $this->name = "I'm Foo!\n";16 $foo = new Foo;21 // In ZE1, we would expect "I'm Foo!"26 I'm Foo!
8 class Foo {10 function test($x = Foo::HUN) {12 static $arr = array(Foo::HUN => 'ten');20 Foo::test(); 21 echo Foo::HUN."\n";24 Strict Standards: Non-static method Foo::test() should not be called statically in %sbug23384.php o…
9 class Foo {14 class Bar extends Foo {54 Foo::x($a = 1)55 Foo::x($b = 3)56 Foo::x($c = 99)62 Foo::x($a = 1)63 Foo::x($b = 3)64 Foo::x($c = 99)
5 class Foo implements IteratorAggregate15 var_dump(iterator_to_array(new Foo));20 #0 %s: Foo->bar()21 #1 [internal function]: Foo->getIterator()22 #2 %s: iterator_to_array(Object(Foo))
Completed in 24 milliseconds