Home
last modified time | relevance | path

Searched refs:A (Results 51 – 75 of 1323) sorted by relevance

12345678910>>...53

/PHP-7.4/ext/reflection/tests/
H A DReflectionProperty_getDocComment_basic.phpt8 class A {
26 class B extends A {
28 /** A doc comment for $b */
30 /** A doc comment for $e */
34 foreach(array('A', 'B') as $class) {
45 ---> Doc comment for A::$a:
52 ---> Doc comment for A::$b:
56 ---> Doc comment for A::$c:
60 ---> Doc comment for A::$d:
66 ---> Doc comment for A::$e:
[all …]
H A D005.phpt14 /** Comment for class A */
15 class A
17 /** Method A::bla()
34 * Comment for A::baz()
40 $r = new ReflectionClass('A');
51 string(19) "Comment for class A"
52 string(15) "Method A::bla()"
55 string(22) "* Comment for A::baz()"
/PHP-7.4/Zend/tests/
H A Dbug69676.phpt5 class A {
6 const myConst = "const in A";
10 class B extends A {
15 var_dump(A::myDynConst);
18 string(10) "const in A"
19 string(10) "const in A"
H A Dbug40784.phpt6 class A {
7 function A () { echo "I'm A\n"; }
10 class B extends A {
22 …me name as their class will not be constructors in a future version of PHP; A has a deprecated con…
23 I'm A
24 I'm A
H A Dbug69676_2.phpt7 const A = 'Foo::A';
8 const B = self::A . ' and ' . self::C;
14 const A = 'Bar::A';
22 string(17) "Foo::A and Foo::C"
H A Dlsb_017.phpt5 class A {
14 class B extends A {
16 class C extends A {
18 class D extends A {
21 echo A::test(B::test(C::test(D::test())))."\n";
28 A
H A DselfParent_001.phpt5 class A {
6 const myConst = "const in A";
14 class B extends A {
22 A::test();
26 string(10) "const in A"
27 string(10) "const in A"
/PHP-7.4/Zend/tests/type_declarations/
H A Dtyped_properties_039.phpt6 class A {
11 public A $foo;
14 $objs = [new A, new A];
19 $v = new A;
28 Fatal error: Uncaught TypeError: Typed property A::$foo must be int, A used in %s:%d
/PHP-7.4/ext/pdo_firebird/tests/
H A DrowCount.phpt13 $dbh->exec('CREATE TABLE testz (A VARCHAR(10))');
14 $dbh->exec("INSERT INTO testz VALUES ('A')");
15 $dbh->exec("INSERT INTO testz VALUES ('A')");
19 $query = "SELECT * FROM testz WHERE A = ?";
22 $stmt->execute(array('A'));
28 $stmt = $dbh->prepare('UPDATE testZ SET A="A" WHERE A != ?');
29 $stmt->execute(array('A'));
/PHP-7.4/ext/standard/tests/array/
H A Darray_chunk_variation25.phpt18 string(1) "A"
40 string(1) "A"
72 string(1) "A"
104 string(1) "A"
138 string(1) "A"
161 string(1) "A"
184 string(1) "A"
209 string(1) "A"
229 string(1) "A"
249 string(1) "A"
[all …]
/PHP-7.4/tests/classes/
H A Dproperty_override_private_private.phpt5 class A
7 private $p = "A::p";
14 class B extends A
24 $a = new A;
32 A::p
33 A::p
H A Dproperty_override_private_public.phpt5 class A
7 private $p = "A::p";
14 class B extends A
24 $a = new A;
32 A::p
33 A::p
H A Dproperty_override_private_protected.phpt5 class A
7 private $p = "A::p";
14 class B extends A
24 $a = new A;
32 A::p
33 A::p
H A Dproperty_override_privateStatic_private.phpt5 class A
7 private static $p = "A::p (static)";
14 class B extends A
24 A::showA();
31 A::p (static)
32 A::p (static)
H A Dproperty_override_privateStatic_privateStatic.phpt5 class A
7 private static $p = "A::p (static)";
14 class B extends A
24 A::showA();
30 A::p (static)
31 A::p (static)
H A Dproperty_override_privateStatic_protected.phpt5 class A
7 private static $p = "A::p (static)";
14 class B extends A
24 A::showA();
31 A::p (static)
32 A::p (static)
H A Dproperty_override_privateStatic_protectedStatic.phpt5 class A
7 private static $p = "A::p (static)";
14 class B extends A
24 A::showA();
30 A::p (static)
31 A::p (static)
H A Dproperty_override_privateStatic_public.phpt5 class A
7 private static $p = "A::p (static)";
14 class B extends A
24 A::showA();
31 A::p (static)
32 A::p (static)
H A Dproperty_override_privateStatic_publicStatic.phpt5 class A
7 private static $p = "A::p (static)";
14 class B extends A
24 A::showA();
30 A::p (static)
31 A::p (static)
H A Dproperty_override_private_privateStatic.phpt5 class A
7 private $p = "A::p";
14 class B extends A
24 $a = new A;
32 A::p
33 A::p
H A Dproperty_override_private_protectedStatic.phpt5 class A
7 private $p = "A::p";
14 class B extends A
24 $a = new A;
32 A::p
33 A::p
H A Dproperty_override_private_publicStatic.phpt5 class A
7 private $p = "A::p";
14 class B extends A
24 $a = new A;
32 A::p
33 A::p
H A Dproperty_override_protectedStatic_protectedStatic.phpt5 class A
7 protected static $p = "A::p (static)";
14 class B extends A
24 A::showA();
30 A::p (static)
31 A::p (static)
H A Dproperty_override_protectedStatic_publicStatic.phpt5 class A
7 protected static $p = "A::p (static)";
14 class B extends A
24 A::showA();
30 A::p (static)
31 A::p (static)
H A Dproperty_override_publicStatic_publicStatic.phpt5 class A
7 public static $p = "A::p (static)";
14 class B extends A
24 A::showA();
30 A::p (static)
31 A::p (static)

Completed in 31 milliseconds

12345678910>>...53