Home
last modified time | relevance | path

Searched refs:A (Results 251 – 275 of 1571) sorted by relevance

1...<<11121314151617181920>>...63

/PHP-7.2/Zend/tests/
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.phpt6 class A {
15 class B extends A {}
20 string(1) "A"
H A Dclosure_054.phpt6 class A {
15 class B extends A {}
20 string(1) "A"
H A Dis_a.phpt18 class A extends BASE implements I {
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);
H A Dget_class_vars_001.phpt6 class A {
12 class B extends A {
19 var_dump(get_class_vars('A'));
H A Dabstract_inheritance_003.phpt6 abstract class A { abstract function bar($x, $y = 0); }
7 abstract class B extends A { abstract function bar($x); }
12 Fatal error: Declaration of B::bar($x) must be compatible with A::bar($x, $y = 0) in %s
H A Dbug30922.phpt6 class A implements RecurisiveFooFar {}
8 $a = new A();
9 var_dump($a instanceOf A);
/PHP-7.2/tests/classes/
H A Dconstants_visibility_error_001.phpt5 class A {
9 var_dump(A::privateConst);
13 Fatal error: Uncaught Error: Cannot access private const A::privateConst in %s:6
H A Dconstants_visibility_error_002.phpt5 class A {
9 var_dump(A::protectedConst);
13 Fatal error: Uncaught Error: Cannot access protected const A::protectedConst in %s:6
H A Dinheritance_003.phpt6 class A
11 class B extends A
19 Warning: Declaration of B::f() should be compatible with A::f($x) in %sinheritance_003.php on line …
H A Dinheritance_004.phpt6 class A
11 class B extends A
19 Warning: Declaration of B::f($x) should be compatible with A::f() in %sinheritance_004.php on line …
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) {
/PHP-7.2/ext/reflection/tests/
H A Dbug39067.phpt6 class A {
10 class B extends A {
24 $rc = new ReflectionClass('A');
43 string(1) "A"
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-7.2/Zend/tests/anon/
H A D002.phpt5 class A{}
11 $a = new class extends A implements B {
17 var_dump($a instanceof A, $a instanceof B);
/PHP-7.2/ext/opcache/tests/
H A Dbug74019.phpt11 class A {
13 list($a, $b) = A::CONSTS;
20 $a = new A;
/PHP-7.2/ext/intl/tests/
H A Dbug72639.phpt7 class A extends IntlCalendar {
11 var_dump(new A());
14 object(A)#%d (1) {
/PHP-7.2/Zend/tests/nullable_types/
H A Dcontravariant_nullable_return_fails.phpt6 interface A {
10 interface B extends A {
14 Fatal error: Declaration of B::method(): ?int must be compatible with A::method(): int in %s on lin…
/PHP-7.2/tests/func/
H A D006.phpt12 echo 'A';
22 var_dump( $a ); // 1A
26 string(2) "1A"
/PHP-7.2/ext/standard/tests/
H A Dforward_static_call_array.phpt19 class A {
21 const NAME = 'A';
30 class B extends A {
36 forward_static_call_array(array('A', 'test'), array('more', 'args'));
/PHP-7.2/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-7.2/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 {
55 A::testA
62 string(13) "A::hiddenPriv"
/PHP-7.2/ext/standard/tests/array/
H A Darray_splice_variation3.phpt103 string(1) "A"
148 string(1) "A"
193 string(1) "A"
234 string(1) "A"
275 string(1) "A"
310 string(1) "A"
349 string(1) "A"
394 string(1) "A"
427 string(1) "A"
472 string(1) "A"
[all …]

Completed in 35 milliseconds

1...<<11121314151617181920>>...63