Home
last modified time | relevance | path

Searched refs:a (Results 201 – 225 of 6311) sorted by last modified time

12345678910>>...253

/PHP-5.5/tests/classes/
H A Dinheritance.phpt9 public $a;
13 echo "a = ".$this->a."\n";
17 return $this->a*$this->b;
25 echo "a = ".$this->a."\n";
33 $foo1->a = 2;
41 $bar1->a = 4;
48 a = 2
53 a = 4
H A Dinheritance_007.phpt16 $b->a();
H A Dinterface_and_extends.phpt2 ZE2 a class cannot extend an interface
H A Dinterface_constant_inheritance_002.phpt2 Ensure a class may not shadow a constant inherited from an interface.
H A Dinterface_constant_inheritance_003.phpt2 Ensure a class may not inherit two constants with the same name from two separate interfaces.
H A Dinterface_constant_inheritance_004.phpt2 Ensure a class may implement two interfaces which include the same constant (due to inheritance).
H A Dinterface_optional_arg_003.inc3 function f($a = null);
H A Dinterface_optional_arg_003.phpt8 function f($a = 2) {
9 var_dump($a);
H A Diterators_001.phpt55 $a = array(0,1,2);
56 foreach($a as $v) {
H A Diterators_006.phpt41 class a implements IteratorAggregate {
48 $array = new a();
H A Dmethod_call_variation_001.phpt2 In $a->$b[Y](), $b[Y] represents a method name on $a. But in $a->X[Y](), $a->X[Y] represents a glob…
7 function foo($a, $b)
9 echo "Called C::foo($a, $b)\n";
22 function foo($a, $b)
24 echo "Called global foo($a, $b)\n";
H A Dprivate_003.phpt2 ZE2 A private method cannot be called in a derived class
29 fail::not_ok(); // calling a private function
H A Dprivate_003b.phpt2 ZE2 A private method cannot be called in a derived class
30 $t->not_ok(); // calling a private function
H A Dprivate_004.phpt2 ZE2 A private method cannot be called in a derived class
H A Dprivate_004b.phpt2 ZE2 A private method cannot be called in a derived class
H A Dprivate_005.phpt2 ZE2 A private method cannot be called in a derived class
H A Dprivate_005b.phpt2 ZE2 A private method cannot be called in a derived class
H A Dprivate_006.phpt2 ZE2 A private method can be overwritten in a second derived class
H A Dprivate_006b.phpt2 ZE2 A private method can be overwritten in a second derived class
H A Darrayobject_001.phpt6 $a = new ArrayObject;
7 $a['foo'] = 'bar';
8 echo reset($a);
9 echo count($a);
10 echo current($a);
H A Dassign_op_property_001.phpt10 if ($property == "a") {
16 if ($property == "a") {
23 var_dump($obj->a);
24 $obj->a += 2;
25 var_dump($obj->a);
H A Dautoload_007.phpt11 $a = new stdClass;
12 var_dump($a instanceof UndefC);
H A Dautoload_012.phpt15 Warning: call_user_func() expects parameter 1 to be a valid callback, class 'UndefC' not found in %…
H A Dautoload_021.phpt8 $a = "../BUG";
9 $x = new $a;
H A Dbug23951.phpt21 $a = new A;
24 print_r($a);

Completed in 19 milliseconds

12345678910>>...253