Home
last modified time | relevance | path

Searched refs:I (Results 26 – 50 of 403) sorted by relevance

12345678910>>...17

/PHP-8.2/ext/zlib/tests/
H A Dreadgzfile_variation9.phpt26 all I know is that you can realize it
29 and I know that it descends down on me
33 all I know is that you can realize it
36 and I know that it descends down on me
40 all I know is that you can realize it
43 and I know that it descends down on me
47 all I know is that you can realize it
50 and I know that it descends down on me
H A Dgzfile_variation12.phpt33 string(38) "all I know is that you can realize it
42 string(39) "and I know that it descends down on me
53 string(38) "all I know is that you can realize it
62 string(39) "and I know that it descends down on me
73 string(38) "all I know is that you can realize it
82 string(39) "and I know that it descends down on me
93 string(38) "all I know is that you can realize it
102 string(39) "and I know that it descends down on me
H A Dgzfile_variation9.phpt32 string(38) "all I know is that you can realize it
41 string(39) "and I know that it descends down on me
52 string(38) "all I know is that you can realize it
61 string(39) "and I know that it descends down on me
72 string(38) "all I know is that you can realize it
81 string(39) "and I know that it descends down on me
92 string(38) "all I know is that you can realize it
101 string(39) "and I know that it descends down on me
/PHP-8.2/ext/date/tests/
H A Dbug33414-2.phpt8 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
10 print "result=".date("l Y-m-d H:i:s T I", $strtotime_tstamp)."\n";
16 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
18 print "result=".date("l Y-m-d H:i:s T I", $strtotime_tstamp)."\n";
24 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
32 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
40 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
48 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
56 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
64 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
[all …]
H A Dbug33415-2.phpt10 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
18 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
27 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
36 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
44 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
53 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
61 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
70 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
79 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
87 print "tStamp=". date("l Y-m-d H:i:s T I", $tStamp). "\n";
[all …]
/PHP-8.2/Zend/tests/
H A Dbug80126_2.phpt6 interface I {
7 public function method(): I;
10 abstract class A implements I {
11 public function method(): I {
H A Dbug73987_1.phpt6 interface I {
9 class A implements I {
10 public function example(): int { } // compatible with I::example
13 public function example(): string { } // compatible with I::example
H A Dbug73987.phpt6 interface I {
9 class A implements I {
10 public function example($a, $b = null, $c = null) { } // compatible with I::example
13 public function example($a, $b, $c = null) { } // compatible with I::example
H A Dis_a.phpt15 interface I {
18 class A extends BASE implements I {
25 var_dump(is_a($a, "I"));
29 var_dump(is_subclass_of($a, "I"));
/PHP-8.2/ext/pcre/tests/
H A Dpcre_count.phpt20 $regex = '~((V(I|1)(4|A)GR(4|A))|(V(I|1)C(0|O)D(I|1)(N|\/\\\/)))~i';
26 $regex = '~((V(I|1)(4|A)GR(4|A))|(V(I|1)C(0|O)D(I|1)(N|\/\\\/)))~i';
/PHP-8.2/ext/reflection/tests/
H A DReflectionClass_getDocComment_001.phpt33 interface I {}
38 class D implements I {}
41 class E extends C implements I {} {}
44 class F extends C implements I {} {}
47 final class G extends C implements I {} {}
49 $classes = array('A', 'B', 'C', 'D', 'E', 'F', 'G', 'I');
95 ---> Doc comment for class I:
H A DReflectionClass_isInstance_basic.phpt8 interface I {}
9 class C implements I {}
13 $classes = array("A", "B", "C", "I", "X");
44 is myA a I? bool(false)
45 is myB a I? bool(false)
46 is myC a I? bool(true)
47 is myX a I? bool(false)
H A DReflectionClass_isSubclassOf_basic.phpt9 interface I {}
10 class X implements I {}
38 Is A a subclass of I?
53 Is B a subclass of I?
68 Is C a subclass of I?
74 Is I a subclass of A?
77 Is I a subclass of B?
80 Is I a subclass of C?
83 Is I a subclass of I?
86 Is I a subclass of X?
[all …]
H A DReflectionClass_getInterfaces_003.phpt20 interface I {}
21 class C implements I {}
29 $a['I']->x = 1;
54 ["I"]=>
57 string(1) "I"
64 ["I"]=>
67 string(1) "I"
/PHP-8.2/ext/zend_test/tests/
H A Dobserver_retval_07.phpt13 $retval = 'I should be observable';
33 </getMessage:'I should be observable'>
34 </foo:'I should be observable'>
37 </getMessage:'I should be observable'>
38 </foo:'I should be observable'>
H A Dobserver_retval_by_ref_03.phpt14 return 'I should be observable';
33 </getMessage:'I should be observable'>
36 </foo:'I should be observable'>
39 </getMessage:'I should be observable'>
42 </foo:'I should be observable'>
/PHP-8.2/Zend/tests/type_declarations/variance/
H A Dloading_exception2.phpt15 class B extends A implements I {
36 class B extends A implements I, J {
44 Class I does not exist
45 Class I does not exist
47 Fatal error: During inheritance of B with variance dependencies: Uncaught Exception: Class I does n…
49 #0 %s(%d): {closure}('I')
H A Dinfinite_recursion.phpt5 interface I {}
8 function test(): I {}
17 Fatal error: Declaration of Y::test(): C must be compatible with X::test(): I in %s on line %d
/PHP-8.2/ext/standard/tests/strings/
H A Dstrip_tags_variation4.phpt21 "<nnn>I am not a valid html text</nnn>",
22 '<nnn>I am not a valid html text</nnn>',
23 "<nnn>I am a quoted (\") string with special chars like \$,\!,\@,\%,\&</nnn>",
24 '<nnn>I am a quoted (\") string with special chars like \$,\!,\@,\%,\&</nnn>',
60 string(26) "I am not a valid html text"
62 string(26) "I am not a valid html text"
64 string(62) "I am a quoted (") string with special chars like $,\!,\@,\%,\&"
66 string(64) "I am a quoted (\") string with special chars like \$,\!,\@,\%,\&"
H A Dstrip_tags_variation7.phpt20 "<nnn>I am not a valid html text</nnn>",
21 '<nnn>I am not a valid html text</nnn>',
22 "<nnn>I am a quoted (\") string with special chars like \$,\!,\@,\%,\&</nnn>",
23 '<nnn>I am a quoted (\") string with special chars like \$,\!,\@,\%,\&</nnn>',
58 string(37) "<nnn>I am not a valid html text</nnn>"
60 string(37) "<nnn>I am not a valid html text</nnn>"
62 string(73) "<nnn>I am a quoted (") string with special chars like $,\!,\@,\%,\&</nnn>"
64 string(75) "<nnn>I am a quoted (\") string with special chars like \$,\!,\@,\%,\&</nnn>"
H A Dpack.phpt23 print_r(unpack("I", pack("I", 65534)));
24 print_r(unpack("I", pack("I", 0)));
25 print_r(unpack("I", pack("I", -1000)));
26 print_r(unpack("I", pack("I", -64434)));
27 print_r(unpack("I", pack("I", 4294967296)));
28 print_r(unpack("I", pack("I", -4294967296)));
/PHP-8.2/ext/pdo_firebird/tests/
H A Dbug_73087.phpt15 for ($I = 1; $I < 10; $I++) {
17 'id' => $I,
/PHP-8.2/Zend/tests/constants/final_constants/
H A Dfinal_const5.phpt6 interface I
11 class C implements I
18 Fatal error: C::X cannot override final constant I::X in %s on line %d
H A Dfinal_const11.phpt11 interface I
16 class C2 extends C implements I
22 Fatal error: Class C2 inherits both C::C and I::C, which is ambiguous in %s on line %d
/PHP-8.2/ext/opcache/tests/
H A Dpreload_variance.inc27 interface I {}
28 interface J extends I {}
30 public I|J $prop;
31 public function method($a): I {}
34 public J|I $prop;

Completed in 49 milliseconds

12345678910>>...17