Home
last modified time | relevance | path

Searched refs:Foo (Results 1 – 25 of 237) sorted by path

12345678910

/PHP-5.5/
H A DLICENSE25 conjunction with PHP by saying "Foo for PHP" instead of calling
26 it "PHP Foo" or "phpfoo"
H A DNEWS8426 called Foo). (Jani)
H A DREADME.PHP4-TO-PHP5-THIN-CHANGES115 class Foo{
119 var_dump(get_class_methods("Foo"));
141 class Foo {
146 $a = new Foo();
147 $b = new Foo();
/PHP-5.5/Zend/
H A DZEND_CHANGES32 class Foo {
39 $object = new Foo;
42 $other = new Foo;
111 class Foo {
231 interface Foo {
283 class Foo {
470 class Foo {
474 echo 'Foo::constant = ' . Foo::constant . "\n";
679 class Foo {
699 class Foo {
[all …]
H A Dmicro_bench.php24 class Foo { class
135 $x = Foo::$a;
141 Foo::$a = 0;
147 $x = isset(Foo::$a);
153 $x = empty(Foo::$a);
159 Foo::f();
165 $x = new Foo();
295 Foo::read_static(N);
297 Foo::write_static(N);
311 Foo::call_static(N);
[all …]
/PHP-5.5/Zend/tests/
H A Dargument_restriction_003.phpt5 class Foo {
9 …public function test(Foo $foo, array $bar, $option = NULL, $extra = "lllllllllllllllllllllllllllll…
19 Strict Standards: Declaration of Sub::test() should be compatible with Base::test(Foo $foo, array $…
H A Dargument_restriction_004.phpt5 class Foo {
9 abstract public function test(Foo $foo, array $bar, $option = NULL, $extra = 16777215) ;
13 public function test(Foo $foo, array $bar, $option = NULL, $extra = 0xffffff ) {
H A Dbug18556.phpt12 $this->foo = "Foo";
34 Foo
36 Foo
H A Dbug22725.phpt7 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.
H A Dbug26166.phpt6 class Foo
20 $this->obj = new Foo();
H A Dbug27798.phpt8 public $Foo = 1;
39 ["Foo"]=>
47 ["Foo"]=>
52 ["Foo"]=>
63 ["Foo"]=>
69 ["Foo"]=>
H A Dbug29368.phpt6 class Foo
21 $bar = new Foo;
32 Foo::__construct
H A Dbug31525.phpt7 class Foo {
15 $bar = new Foo();
21 object(Foo)#1 (0) {
H A Dbug31683.phpt6 class Foo implements ArrayAccess {
50 $foo = new Foo();
H A Dbug33710.phpt6 class Foo implements ArrayAccess
25 $bar = new Foo();
H A Dbug33996.phpt7 class Foo
12 function FooTest(Foo $foo)
24 FooTest(new Foo());
29 Catchable fatal error: Argument 1 passed to FooTest() must be an instance of Foo, none given, calle…
H A Dbug33999.phpt7 class Foo {
11 $foo = new Foo;
21 object(Foo)#1 (1) {
26 Notice: Object of class Foo could not be converted to int in %sbug33999.php on line 9
29 Notice: Object of class Foo could not be converted to double in %sbug33999.php on line 12
H A Dbug36268.phpt5 class Foo {
10 $x = new Foo();
H A Dbug36759.phpt5 class Foo {
23 $x = new Foo($y);
26 Foo::__destruct
H A Dbug37251.phpt11 class Foo {
16 $foo = new Foo();
H A Dbug37811.phpt10 return "Foo";
22 string(3) "Foo"
H A Dbug38234.phpt5 class Foo {
11 $x = new Foo();
H A Dbug39990.phpt5 class Foo {
11 $obj=new Foo();
H A Dbug40621.phpt6 class Foo {
13 Foo::get();
18 Strict Standards: Non-static method Foo::get() should not be called statically in %s on line %d
20 Fatal error: Non-static method Foo::__construct() cannot be called statically in %s on line %d
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";

Completed in 84 milliseconds

12345678910