Home
last modified time | relevance | path

Searched refs:A (Results 176 – 200 of 1237) sorted by relevance

12345678910>>...50

/PHP-5.4/ext/reflection/tests/
H A DReflectionClass_newInstance_001.phpt8 class A {
9 public function A() {
10 echo "In constructor of class A\n";
35 $rcA = new ReflectionClass('A');
74 In constructor of class A
75 In constructor of class A
76 object(A)#%d (0) {
78 object(A)#%d (0) {
H A Dbug39067.phpt6 class A {
10 class B extends A {
24 $rc = new ReflectionClass('A');
43 string(1) "A"
H A DReflectionClass_newInstanceArgs_001.phpt8 class A {
9 public function A() {
10 echo "In constructor of class A\n";
35 $rcA = new ReflectionClass('A');
74 In constructor of class A
75 In constructor of class A
76 object(A)#%d (0) {
78 object(A)#%d (0) {
H A Dbug45139.phpt6 class A {
10 class B extends A {
26 $rc = new ReflectionClass('A');
28 var_dump($rp->getDeclaringClass()->getName()); // A
53 string(1) "A"
H A DReflectionMethod_getDeclaringClass_basic.phpt6 class A {
10 class B extends A {
24 string(1) "A"
/PHP-5.4/tests/classes/
H A Dconstants_basic_003.phpt8 public static $a = A::MY_CONST;
10 const ca = A::MY_CONST;
25 string(12) "hello from A"
27 string(12) "hello from A"
H A D__call_006.phpt5 class A {
12 A::unknownCalledWithSRO(1,2,3);
16 class B extends A {
22 $a = new A();
56 object(A)#%d (0) {
62 object(A)#%d (0) {
H A Dinheritance_003.phpt6 class A
11 class B extends A
20 Strict Standards: Declaration of B::f() should be compatible with A::f($x) in %sinheritance_003.php…
H A Dinheritance_004.phpt6 class A
11 class B extends A
20 Strict Standards: Declaration of B::f() should be compatible with A::f() in %sinheritance_004.php o…
H A Dinheritance_006.phpt5 Class A {
9 Class B extends A {
22 [%u|b%"c":%u|b%"A":private]=>
/PHP-5.4/Zend/tests/
H A Dbug42937.phpt5 class A {
17 class B extends A {
22 A::test4();
28 $a = new A();
H A Dbug64239_1.phpt5 class A {
9 class B extends A {
16 print_r(get_class_methods("A"));
H A Dinstanceof.phpt10 class A {
12 $a = new A;
14 var_dump($a instanceof A);
H A Dbug51791.phpt6 class A {
9 var_dump(constant('A::B1'));
13 Warning: constant(): Couldn't find constant A::B1 in %s on line %d
H A Dclosure_046.phpt10 $nonstaticUnscoped = function () { var_dump(isset(A::$priv)); var_dump(isset($this)); };
12 class A {
15 return function() { var_dump(isset(A::$priv)); var_dump(isset($this)); };
18 class B extends A {}
20 $a = new A();
34 $d = $nonstaticUnscoped->bindTo(new A, "static"); $d(); echo "\n";
35 $d = $nonstaticScoped->bindTo(new A, "static"); $d(); echo "\n";
H A Dns_036.phpt7 namespace A;
8 use A as B;
18 function f3($x = \A\ArrayObject::STD_PROP_LIST) {
27 var_dump(\A\ArrayObject::STD_PROP_LIST);
H A Dis_a.phpt18 class A extends BASE implements INT {
21 $a = new A;
23 var_dump(is_a($a, "A"));
27 var_dump(is_subclass_of($a, "A"));
H A Dbug41633_3.phpt6 const A = Foo::B;
7 const B = Foo::A;
9 echo Foo::A;
H A Dget_class_vars_001.phpt6 class A {
12 class B extends A {
19 var_dump(get_class_vars('A'));
/PHP-5.4/ext/standard/tests/array/
H A Darray_splice_variation3.phpt104 string(1) "A"
149 string(1) "A"
194 string(1) "A"
235 string(1) "A"
276 string(1) "A"
311 string(1) "A"
350 string(1) "A"
395 string(1) "A"
428 string(1) "A"
473 string(1) "A"
[all …]
/PHP-5.4/ext/standard/tests/class_object/
H A Dget_object_vars_basic_002.phpt11 Class A {
12 private $hiddenPriv = 'A::hiddenPriv';
20 Class B extends A {
56 A::testA
63 string(13) "A::hiddenPriv"
H A Dforward_static_call_002.phpt6 class A
9 echo "A\n";
14 forward_static_call(array('A', 'test'));
/PHP-5.4/ext/dom/tests/
H A DDOMNode_insertBefore.phpt15 $e1 = $dom->createElement("A");
21 echo "Add new node A before B\n";
32 Add new node A before B
34 <root><A/><B/></root>
/PHP-5.4/tests/func/
H A D006.phpt12 echo 'A';
22 var_dump( $a ); // 1A
26 string(2) "1A"
/PHP-5.4/ext/standard/tests/file/
H A Dbasename_variation1-win32.phpt15 "A:/",
17 "A:\\",
57 basename for path A:/foo is:
59 basename for path A:/foo/ is:
61 basename for path A:/foo\ is:
63 basename for path A:/foo.bar is:
65 basename for path A:/foo.bar/ is:
67 basename for path A:/foo.bar\ is:
97 basename for path A:\foo is:
99 basename for path A:\foo/ is:
[all …]

Completed in 33 milliseconds

12345678910>>...50