Home
last modified time | relevance | path

Searched refs:A (Results 226 – 250 of 1571) sorted by relevance

12345678910>>...63

/PHP-7.2/Zend/tests/
H A Dbug70873.phpt6 class A {
10 class B extends A {
16 class C extends A {
18 var_dump(A::$x);
H A Dclosure_045.phpt6 class A {
12 $a = A::foo();
13 $a->bindTo(new A);
H A Dname_collision_01.phpt6 class A { }
7 class A { }
11 Fatal error: Cannot declare class A, because the name is already in use in %s on line %d
H A Dname_collision_02.phpt6 class A { }
7 interface A { }
11 Fatal error: Cannot declare interface A, because the name is already in use in %s on line %d
H A Dname_collision_03.phpt6 class A { }
7 trait A { }
11 Fatal error: Cannot declare trait A, because the name is already in use in %s on line %d
H A Dname_collision_04.phpt6 interface A { }
7 interface A { }
11 Fatal error: Cannot declare interface A, because the name is already in use in %s on line %d
H A Dname_collision_05.phpt6 interface A { }
7 trait A { }
11 Fatal error: Cannot declare trait A, because the name is already in use in %s on line %d
H A Dname_collision_06.phpt6 trait A { }
7 trait A { }
11 Fatal error: Cannot declare trait A, because the name is already in use in %s on line %d
H A Dclass_properties_const.phpt5 class A {
8 $a = new A;
19 Notice: Undefined property: A::$Array in %sclass_properties_const.php on line %d
22 Notice: Undefined property: A::$1 in %sclass_properties_const.php on line %d
H A Dbug48770_2.phpt8 class A {
23 class B extends A {
49 string(27) "A::func2: This should work!"
50 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 Dclosure_055.phpt6 class A {
15 class B extends A {}
19 string(1) "A"
H A Dclosure_056.phpt6 class A {
15 class B extends A {}
19 string(1) "A"
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 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);
/PHP-7.2/ext/standard/tests/serialize/
H A Dbug71995.phpt6 class A {
15 $a = new A();
22 string(39) "O:1:"A":1:{s:1:"b";O:8:"stdClass":0:{}}"
23 object(A)#%d (1) {
/PHP-7.2/Zend/tests/try/
H A Dtry_finally_020.phpt5 class A {
15 foreach ([new A(1)] as $a) {
18 foreach ([new A(2)] as $a) {
21 foreach ([new A(3)] as $a) {
/PHP-7.2/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_getDocComment_001.phpt16 for A
19 class A {}
22 class B extends A { }
49 $classes = array('A', 'B', 'C', 'D', 'E', 'F', 'G', 'I');
59 ---> Doc comment for class A:
66 for A
/PHP-7.2/ext/spl/tests/
H A Dbug70730.phpt5 class A extends \ArrayObject
23 $a = new A();
27 $b = new A();
32 object(A)#%d (2) {
/PHP-7.2/ext/opcache/tests/
H A Doptimize_func_calls.phpt12 class A {
53 foo(new A());
61 foo((new A)->obj);
62 $obj = new A;
105 [0] => A Object
121 [3] => A Object
/PHP-7.2/ext/standard/tests/general_functions/
H A Dis_callable_abstract_method.phpt6 abstract class A {
10 class B extends A {
14 $foo = [new B, 'A::foo'];
/PHP-7.2/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_006.phpt5 Class A {
9 Class B extends A {
22 ["c":"A":private]=>

Completed in 36 milliseconds

12345678910>>...63