Home
last modified time | relevance | path

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

12345678910>>...53

/PHP-5.5/Zend/tests/
H A Daccess_modifiers_009.phpt8 class A {
9 static protected function f() {return 'A::f()';}
11 class B1 extends A {
14 class B2 extends A {
H A Dbug39017.phpt5 class A {}
6 foreach(($a=(object)new A()) as $v);
10 object(A)#%d (0) {
H A Dbug48770_2.phpt8 class A {
23 class B extends A {
49 %unicode|string%(27) "A::func2: This should work!"
50 %unicode|string%(27) "A::func3: This should work!"
52 …() expects parameter 1 to be a valid callback, cannot access private method A::func22() in %s on l…
54 Warning: call_user_func_array() expects parameter 1 to be a valid callback, class 'A' does not have…
H A Dbug42937.phpt5 class A {
17 class B extends A {
22 A::test4();
28 $a = new A();
H A Dclosure_055.phpt7 class A {
16 class B extends A {}
21 string(1) "A"
H A Dclosure_056.phpt7 class A {
16 class B extends A {}
21 string(1) "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_053.phpt7 class A {
16 class B extends A {}
22 string(1) "A"
H A Dclosure_054.phpt7 class A {
16 class B extends A {}
22 string(1) "A"
H A Dbug41633_3.phpt6 const A = Foo::B;
7 const B = Foo::A;
9 echo Foo::A;
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 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);
/PHP-5.5/ext/reflection/tests/
H A DReflectionClass_hasProperty_001.phpt38 echo " --> Check for A: ";
39 var_dump($rc->hasProperty("A"));
48 --> Check for A: bool(false)
53 --> Check for A: bool(false)
58 --> Check for A: bool(false)
63 --> Check for A: bool(false)
68 --> Check for A: bool(false)
73 --> Check for A: bool(false)
H A DReflectionClass_isSubclassOf_basic.phpt5 class A {}
6 class B extends A {}
29 Is A a subclass of A?
32 Is A a subclass of B?
35 Is A a subclass of C?
38 Is A a subclass of I?
41 Is A a subclass of X?
44 Is B a subclass of A?
59 Is C a subclass of A?
74 Is I a subclass of A?
[all …]
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"
/PHP-5.5/tests/lang/
H A Dbug26182.phpt8 class A {
17 $t = new A ();
23 A Object
/PHP-5.5/ext/mbstring/oniguruma/doc/
H A DFAQ.ja11 ����åɥ����դˤ���ˤϡ��ʲ���(A)��(B)�Τɤ��餫��Ԥʤ���
14 (A) Oniguruma Layer
62 ��������ˡ�ˤĤ��ơ��ʲ�(A)��(B)���������ޤ���
69 (A) Oniguruma������������
/PHP-5.5/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 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…
/PHP-5.5/tests/func/
H A D006.phpt12 echo 'A';
22 var_dump( $a ); // 1A
26 string(2) "1A"
/PHP-5.5/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>

Completed in 68 milliseconds

12345678910>>...53