Home
last modified time | relevance | path

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

12345678910>>...63

/PHP-7.2/ext/standard/tests/serialize/
H A Dserialization_objects_011.phpt16 Class A {
26 Class B extends A {
71 prettyPrint(new A);
84 object(A)#%d (3) {
86 string(7) "A.APriv"
90 string(6) "A.APub"
93 string(98) "O:1:"A":3:{s:8:"\0A\0APriv";s:7:"A.APriv";s:8:"\0*\0AProt";s:7:"A.AProt";s:4:"APub";s:6…
95 object(A)#%d (3) {
101 string(6) "A.APub"
122 string(6) "A.APub"
[all …]
/PHP-7.2/ext/pcre/pcrelib/sljit/
H A DsljitNativePPC_64.c52 return push_inst(compiler, ADDI | D(reg) | A(0) | IMM(imm)); in load_immediate()
89 return push_inst(compiler, ORI | S(reg) | A(reg) | tmp2); in load_immediate()
116 return push_inst(compiler, ORI | S(reg) | A(reg) | IMM(imm)); in load_immediate()
121 (RLDICL | S(src) | A(dst) | ((from) << 6) | (1 << 5))
156 return push_inst(compiler, OR | S(src2) | A(dst) | B(src2)); in emit_single_op()
164 return push_inst(compiler, EXTSW | S(src2) | A(dst)); in emit_single_op()
177 return push_inst(compiler, EXTSB | S(src2) | A(dst)); in emit_single_op()
181 return push_inst(compiler, EXTSB | S(src2) | A(dst)); in emit_single_op()
192 return push_inst(compiler, EXTSH | S(src2) | A(dst)); in emit_single_op()
221 return push_inst(compiler, CNTLZW | S(src2) | A(dst)); in emit_single_op()
[all …]
/PHP-7.2/Zend/tests/
H A Dnumeric_string_errors.phpt60 Warning: A non-numeric value encountered in %s on line %d
62 Warning: A non-numeric value encountered in %s on line %d
71 Warning: A non-numeric value encountered in %s on line %d
73 Warning: A non-numeric value encountered in %s on line %d
82 Warning: A non-numeric value encountered in %s on line %d
84 Warning: A non-numeric value encountered in %s on line %d
93 Warning: A non-numeric value encountered in %s on line %d
95 Warning: A non-numeric value encountered in %s on line %d
106 Warning: A non-numeric value encountered in %s on line %d
108 Warning: A non-numeric value encountered in %s on line %d
[all …]
H A Dbug27268.phpt5 class A
13 $A = new A;
14 $A->a = array(1);
15 $x = $A->getA();
16 $clone = clone $A;
18 print_r($A);
21 A Object
H A Dget_class_vars_004.phpt6 class A {
8 static public $A = 2;
17 var_dump(get_class_vars('A'));
21 var_dump(get_class_vars('A'));
25 var_dump(get_class_vars('A'));
27 new A;
29 var_dump(A::test());
36 ["A"]=>
46 ["A"]=>
60 ["A"]=>
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 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();
39 A::foo
40 A::foo
41 A::foo
42 A::foo
H A Dnumeric_string_errors_assign.phpt115 Warning: A non-numeric value encountered in %s on line %d
117 Warning: A non-numeric value encountered in %s on line %d
126 Warning: A non-numeric value encountered in %s on line %d
128 Warning: A non-numeric value encountered in %s on line %d
137 Warning: A non-numeric value encountered in %s on line %d
139 Warning: A non-numeric value encountered in %s on line %d
148 Warning: A non-numeric value encountered in %s on line %d
150 Warning: A non-numeric value encountered in %s on line %d
161 Warning: A non-numeric value encountered in %s on line %d
163 Warning: A non-numeric value encountered in %s on line %d
[all …]
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 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 Dlsb_021.phpt5 class A {
11 class B extends A {
21 A::test();
22 call_user_func("A::test");
23 call_user_func(array("A", "test"));
45 A
46 A
47 A
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 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
/PHP-7.2/Zend/tests/varSyntax/
H A DconstClassMemberAccess.phpt6 class A {
7 const A = ['a' => ['b' => 'c']];
10 var_dump(A::A);
11 var_dump(A::A['a']);
12 var_dump(A::A['a']['b']);
/PHP-7.2/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');
51 string(19) "Comment for class A"
52 string(15) "Method A::bla()"
55 string(22) "* Comment for A::baz()"
/PHP-7.2/tests/classes/
H A Dinheritance_005.phpt5 class A
7 function A()
13 class B extends A
28 echo "Is B::A() callable?\n";
29 var_dump(is_callable(array($b, "A")));
34 echo "Is C::A() callable?\n";
35 var_dump(is_callable(array($c, "A")));
46 In A::A
49 Is B::A() callable?
52 In A::A
[all …]
H A Dfinal_ctor3.phpt5 class A {
6 final function A() { }
8 class B extends A {
9 function A() { }
13 …me name as their class will not be constructors in a future version of PHP; A has a deprecated con…
15 Fatal error: Cannot override final method A::A() in %s on line %d
/PHP-7.2/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-7.2/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.2/ext/opcache/tests/
H A Dbug66251.phpt11 printf ("A=%s\n", getA());
12 const A="hello";
13 function getA() {return A;}
16 Warning: Use of undefined constant A - assumed 'A' (this will throw an Error in a future version of…
17 A=A
/PHP-7.2/sapi/cgi/tests/
H A Dbug61605.phpt11 header("A: first");
12 header("A: second", TRUE);
14 header("A: third", FALSE);
16 header_remove("A");
25 [1] => A: second
30 [1] => A: second
31 [2] => A: third
/PHP-7.2/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');
17 string(5) "A:C:1"
21 string(3) "A:2"
25 string(3) "A:3"
27 string(3) "A:4"

Completed in 30 milliseconds

12345678910>>...63