Home
last modified time | relevance | path

Searched refs:A (Results 26 – 50 of 1312) sorted by relevance

12345678910>>...53

/PHP-8.0/Zend/tests/named_params/
H A Dcall_user_func.phpt72 a = A, b = b, c = C
73 a = A, b = b, c = C
77 string(1) "A"
94 a = A, b = b, c = C
97 string(1) "A"
101 a = A, b = b, c = C
104 string(1) "A"
109 a = A, b = b, c = C
110 a = A, b = b, c = C
111 a = A, b = b, c = C
[all …]
H A Dbasic.phpt73 a=A, b=B, c=C, d=D, e=E
74 a=A, b=B, c=C, d=D, e=E
75 a=A, b=B, c=C, d=D, e=E
76 a=A, b=B, c=C, d=d, e=E
78 a=A, b=B, c=C, d=D, e=E
79 a=A, b=B, c=C, d=D, e=E
80 a=A, b=B, c=C, d=D, e=E
81 a=A, b=B, c=C, d=d, e=E
83 a=A, b=B, c=C, d=D, e=E
84 a=A, b=B, c=C, d=D, e=E
[all …]
/PHP-8.0/ext/reflection/tests/
H A DReflectionMethod_getDocComment_basic.phpt8 * My Doc Comment for A
10 class A {
12 * My Doc Comment for A::f
17 * My Doc Comment for A::privf
33 class B extends A {
57 foreach (array('A', 'B') as $class) {
67 ---> Doc comment for A::f():
69 * My Doc Comment for A::f
73 ---> Doc comment for A::privf():
75 * My Doc Comment for A::privf
[all …]
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');
50 string(19) "Comment for class A"
51 string(15) "Method A::bla()"
54 string(22) "* Comment for A::baz()"
/PHP-8.0/Zend/tests/
H A Dconstant_expressions_coalesce.phpt6 const A = [1 => [[]]];
8 const T_1 = null ?? A[1]['undefined']['index'] ?? 1;
9 const T_2 = null ?? A['undefined']['index'] ?? 2;
10 const T_3 = null ?? A[1][0][2] ?? 3;
11 const T_4 = A[1][0][2] ?? 4;
24 var_dump((function(){ static $var = null ?? A[1][0][2] ?? 3; return $var; })());
25 var_dump((function(){ static $var = A[1][0][2] ?? 4; return $var; })());
27 var_dump((new class { public $var = null ?? A[1]['undefined']['index'] ?? 1; })->var);
28 var_dump((new class { public $var = null ?? A['undefined']['index'] ?? 2; })->var);
29 var_dump((new class { public $var = null ?? A[1][0][2] ?? 3; })->var);
[all …]
H A Dclosure_041.phpt11 echo "scoped to A: "; var_dump(isset(A::$priv));
16 echo "scoped to A: "; var_dump(isset(A::$priv));
20 class A {
24 echo "scoped to A: "; var_dump(isset(A::$priv));
30 echo "scoped to A: "; var_dump(isset(A::$priv));
35 class B extends A {}
37 $a = new A();
71 scoped to A: bool(true)
73 scoped to A: bool(true)
74 bound: A
[all …]
H A Dbug66811.phpt5 class A {
14 class B extends A {}
19 $g = $f->bindTo(null, A::class);
27 $bar = $foo->bindTo(null, A::class);
32 string(1) "A"
34 string(1) "A"
35 string(1) "A"
36 string(1) "A"
37 string(1) "A"
H A Dbug38772.phpt5 class A {
16 class B extends A {
22 class C extends A {
28 class D extends A {
34 $a = new A();
40 A::foo
41 A::foo
42 A::foo
43 A::foo
H A Dbug30140.phpt5 class A {
11 class B extends A {
14 A::$test1 = "x";
15 A::$test2 = "y";
16 A::$test3 = "z";
17 var_dump(A::$test1);
18 var_dump(A::$test2);
19 var_dump(A::$test3);
H A Dbug74084.phpt7 $$A += $$B['a'] = &$$C;
8 unset($$A);
10 $$A -= $$B['a'] = &$$C;
14 unset($$A);
16 $$A *= $$B['a'] = &$$C;
20 unset($$A);
22 $$A /= $$B['a'] = &$$C;
26 unset($$A);
28 $$A **= $$B['a'] = &$$C;
H A Dbug66719.phpt6 class A
13 class B extends A
25 call_user_func(array(A::class, 'who'));
31 call_user_func(array(A::class, 'who'));
39 string(1) "A"
40 string(1) "A"
42 string(1) "A"
43 string(1) "A"
H A Dproperty_exists.phpt8 $a = new A;
13 var_dump(property_exists("A", "prot"));
14 var_dump(property_exists("A", "prot2"));
15 var_dump(property_exists("A", "prot3"));
19 $a = new A;
24 var_dump(property_exists("A", "prot"));
25 var_dump(property_exists("A", "prot2"));
26 var_dump(property_exists("A", "prot3"));
30 class A extends aParent {
36 A::staticTest();
H A Dbug64239_4.phpt5 class A {
9 class C extends A {
21 A::Bmethod();
22 A::t2method();
28 #0 A::Bmethod() called at [%sbug64239_4.php:%d]
29 #0 A::t2method() called at [%sbug64239_4.php:%d]
31 #0 A::t2method() called at [%sbug64239_4.php:%d]
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 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"
/PHP-8.0/Zend/tests/type_declarations/
H A Dtyped_properties_079.phpt6 class A {
11 A::$a = &A::$it;
14 A::$it = new ArrayIterator();
16 var_dump(A::$it);
18 A::$a = &$a;
20 A::$it = new ArrayIterator();
29 string(78) "Cannot assign ArrayIterator to reference held by property A::$a of type ?array"
32 string(68) "Cannot assign int to reference held by property A::$a of type ?array"
H A Dstatic_type_return.phpt6 class A {
21 class B extends A {
29 $a = new A;
71 object(A)#3 (0) {
76 object(A)#3 (0) {
78 A::test2(): Return value must be of type B, A returned
80 object(A)#3 (0) {
85 object(A)#3 (0) {
87 A::test4(): Return value must be of type B|array, A returned
90 object(A)#1 (0) {
H A Dtyped_properties_052.phpt7 class A {
8 public A $a1;
11 public ?A $a2;
17 $obj = new A;
21 object(A)#1 (0) {
23 uninitialized(A)
29 uninitialized(?A)
/PHP-8.0/ext/pcre/pcre2lib/sljit/
H A DsljitNativePPC_64.c49 return push_inst(compiler, ADDI | D(reg) | A(0) | IMM(imm)); in load_immediate()
86 return push_inst(compiler, ORI | S(reg) | A(reg) | tmp2); in load_immediate()
113 return push_inst(compiler, ORI | S(reg) | A(reg) | IMM(imm)); in load_immediate()
118 (RLDICL | S(src) | A(dst) | ((from) << 6) | (1 << 5))
153 return push_inst(compiler, OR | S(src2) | A(dst) | B(src2)); in emit_single_op()
161 return push_inst(compiler, EXTSW | S(src2) | A(dst)); in emit_single_op()
174 return push_inst(compiler, EXTSB | S(src2) | A(dst)); in emit_single_op()
178 return push_inst(compiler, EXTSB | S(src2) | A(dst)); in emit_single_op()
189 return push_inst(compiler, EXTSH | S(src2) | A(dst)); in emit_single_op()
218 return push_inst(compiler, CNTLZW | S(src2) | A(dst)); in emit_single_op()
[all …]
/PHP-8.0/ext/date/tests/
H A Dbug41964.phpt2 Bug #41964 (strtotime returns a timestamp for non-time string of pattern '(A|a) .+')
13 $res = date_parse('A ');
17 $res = date_parse('A');
29 $res = date_parse('A Revolution in Development');
44 string(1) "A"
47 string(1) "A"
50 string(1) "A"
53 string(1) "A"
56 string(1) "A"
59 string(1) "A"
/PHP-8.0/ext/standard/tests/strings/
H A Dcrypt_variation1.phpt6 $b = str_repeat("A", 124);
7 echo crypt("A", "$5$" . $b)."\n";
8 $b = str_repeat("A", 125);
9 echo crypt("A", "$5$" . $b)."\n";
10 $b = str_repeat("A", 4096);
11 echo crypt("A", "$5$" . $b)."\n";
/PHP-8.0/ext/pcre/tests/
H A Dpreg_filter.phpt6 $subject = array('1', 'a', '2', 'b', '3', 'A', 'B', '4');
8 $replace = array('A:$0', 'B:$0', 'C:$0');
16 string(5) "A:C:1"
20 string(3) "A:2"
24 string(3) "A:3"
26 string(3) "A:4"
/PHP-8.0/ext/phar/tests/
H A Dbug71625.phpt12 if (file_exists('A:')) die('skip drive A: exists');
17 $phar = new Phar("A:A:.phar");
22 Fatal error: Uncaught UnexpectedValueException: Cannot create phar 'A:A:.phar', file extension (or …
24 #0 %sbug71625.php(%d): Phar->__construct('A:A:.phar')
/PHP-8.0/sapi/cgi/tests/
H A Dbug61605.phpt11 header("A: first");
12 header("A: second", TRUE);
14 header("A: third", FALSE);
16 header_remove("A");
26 [1] => A: second
31 [1] => A: second
32 [2] => A: third

Completed in 39 milliseconds

12345678910>>...53