/PHP-7.3/ext/pgsql/ |
H A D | config.w32 | 10 …D HAVE_PG_CONFIG_H /D PGSQL_EXPORTS /D HAVE_PQSETNONBLOCKING /D HAVE_PQCMDTUPLES /D HAVE_PQCLIENTE…
|
/PHP-7.3/ext/oci8/tests/ |
H A D | bug43492.phpt | 73 A B C D E F G H I J 74 A B C D E F G H I J 75 A B C D E F G H I J 76 A B C D E F G H I J 77 A B C D E F G H I J 78 A B C D E F G H I J 79 A B C D E F G H I J 80 A B C D E F G H I J 81 A B C D E F G H I J 82 A B C D E F G H I J [all …]
|
H A D | bug43492_2.phpt | 64 A B C D E F G H I J 65 A B C D E F G H I J 66 A B C D E F G H I J 67 A B C D E F G H I J 68 A B C D E F G H I J 69 A B C D E F G H I J 70 A B C D E F G H I J 71 A B C D E F G H I J 72 A B C D E F G H I J 73 A B C D E F G H I J [all …]
|
/PHP-7.3/ext/standard/tests/strings/ |
H A D | http_build_query_variation2.phpt | 38 …D=val1&9%5B3%5D=val2&9%5Bstring%5D=string&name=homepage&page=10&sort%5B0%5D=desc&sort%5Badmin%5D%5… 39 …D=val1&prefix_9%5B3%5D=val2&prefix_9%5Bstring%5D=string&name=homepage&page=10&sort%5B0%5D=desc&sor…
|
/PHP-7.3/ext/gd/ |
H A D | config.w32 | 28 ADD_FLAG("CFLAGS_GD", "/D HAVE_LIBWEBP /D HAVE_GD_WEBP"); 48 /D HAVE_GD_GD2 \ 57 /D HAVE_GD_JPG \ 58 /D HAVE_GD_PNG \ 62 /D HAVE_GD_XBM \ 63 /D HAVE_GD_XPM \ 65 /D HAVE_GD_BMP \ 71 /D HAVE_LIBPNG \ 72 /D HAVE_XPM \ 74 /D USE_GD_IOCTX \ [all …]
|
/PHP-7.3/tests/classes/ |
H A D | iterators_008.phpt | 7 class D extends C implements Iterator { 35 foreach (new D as $x) {} 38 D::rewind(2) 39 D::valid(2) 40 D::current(2) 41 D::next(1) 42 D::valid(1) 43 D::current(1) 44 D::next(0) 45 D::valid(0)
|
H A D | static_properties_004.phpt | 6 class D extends C { } 7 class E extends D { } 10 var_dump(C::$p, D::$p, E::$p); 13 D::$p = 'changed.all'; 14 var_dump(C::$p, D::$p, E::$p); 18 D::$p =& $ref; 19 var_dump(C::$p, D::$p, E::$p);
|
H A D | constants_basic_006.phpt | 8 public static $a = array(K => D::V, E::A => K); 11 eval('class D extends C { const V = \'test\'; }'); 13 class E extends D 20 var_dump(C::X, C::$a, D::X, D::$a, E::X, E::$a);
|
/PHP-7.3/ext/sqlite3/ |
H A D | config.w32 | 6 …D SQLITE_THREADSAFE=" + (PHP_ZTS == "yes" ? "1" : "0") + " /D SQLITE_ENABLE_FTS3=1 /D SQLITE_ENABL…
|
/PHP-7.3/ext/standard/tests/class_object/ |
H A D | get_class_methods_basic_002.phpt | 23 echo "Accessing D from C:\n"; 30 class D extends C { 36 echo "Accessing C from D:\n"; 38 echo "Accessing D from D:\n"; 40 echo "Accessing X from D:\n"; 64 D::testFromD(); 92 Accessing D from C: 116 Accessing C from D: 125 Accessing D from D: 142 Accessing X from D: [all …]
|
/PHP-7.3/ext/reflection/tests/ |
H A D | ReflectionProperty_getModifiers_basic.phpt | 15 class D extends C { 28 $rp = new ReflectionProperty("D", "a$i"); 29 echo "D::a$i: "; 36 D::a1: int(256) 38 D::a2: int(512) 40 D::a3: int(1024) 42 D::a4: int(257) 44 D::a5: int(513) 46 D::a6: int(1025)
|
H A D | ReflectionProperty_constructor_variation1.phpt | 11 $rp = new ReflectionProperty("D", "p"); 19 class D extends C{ 22 $rp = new ReflectionProperty("D", "p"); 32 $rp = new ReflectionProperty("D", "p"); 42 D::testFromC(); 45 D::testFromD(); 49 Property D::$p does not exist 52 Property D::$p does not exist 55 Property D::$p does not exist 58 Property D::$p does not exist
|
H A D | bug43926.phpt | 8 class D extends E { 11 class A extends D { 19 $rd = new ReflectionClass('D'); 29 print("Is? D ". ($rd->isInstance($ca) ? 'true' : 'false') .", instanceof: ". (($ca instanceof D) ? … 34 print("Is? D ". ($rd->isInstance($cc) ? 'true' : 'false') .", instanceof: ". (($cc instanceof D) ? … 39 print("Is? D ". ($rd->isInstance($cd) ? 'true' : 'false') .", instanceof: ". (($cd instanceof D) ? … 44 print("Is? D ". ($rd->isInstance($ce) ? 'true' : 'false') .", instanceof: ". (($ce instanceof D) ? … 51 Is? D true, instanceof: true 56 Is? D true, instanceof: true 61 Is? D true, instanceof: true [all …]
|
/PHP-7.3/Zend/tests/ |
H A D | bug43483.phpt | 7 D::prot(); 8 print_r(get_class_methods("D")); 11 class D extends C { 13 echo "Successfully called D::prot().\n"; 16 D::test(); 19 Successfully called D::prot().
|
H A D | bug47054.phpt | 11 class D extends C { 17 $d = new D(); 27 D::m(); 31 Called class: D 37 Deprecated: Non-static method D::m() should not be called statically in %s on line %d 41 #0 %s(%d): D::m()
|
/PHP-7.3/ext/standard/tests/array/ |
H A D | array_chunk_variation25.phpt | 24 string(1) "D" 55 string(1) "D" 87 string(1) "D" 119 string(1) "D" 147 string(1) "D" 170 string(1) "D" 193 string(1) "D" 218 string(1) "D" 238 string(1) "D" 258 string(1) "D" [all …]
|
/PHP-7.3/ext/pcre/pcre2lib/sljit/ |
H A D | sljitNativeSPARC_32.c | 30 return push_inst(compiler, OR | D(dst) | S1(0) | IMM(imm), DR(dst)); in load_immediate() 32 FAIL_IF(push_inst(compiler, SETHI | D(dst) | ((imm >> 10) & 0x3fffff), DR(dst))); in load_immediate() 50 return push_inst(compiler, OR | D(dst) | S1(0) | S2(src2), DR(dst)); in emit_single_op() 58 return push_inst(compiler, AND | D(dst) | S1(src2) | IMM(0xff), DR(dst)); in emit_single_op() 59 FAIL_IF(push_inst(compiler, SLL | D(dst) | S1(src2) | IMM(24), DR(dst))); in emit_single_op() 60 return push_inst(compiler, SRA | D(dst) | S1(dst) | IMM(24), DR(dst)); in emit_single_op() 70 FAIL_IF(push_inst(compiler, SLL | D(dst) | S1(src2) | IMM(16), DR(dst))); in emit_single_op() 86 FAIL_IF(push_inst(compiler, OR | D(dst) | S1(0) | IMM(32), UNMOVABLE_INS)); in emit_single_op() 87 FAIL_IF(push_inst(compiler, OR | D(dst) | S1(0) | IMM(-1), DR(dst))); in emit_single_op() 93 return push_inst(compiler, ADD | D(dst) | S1(dst) | IMM(1), UNMOVABLE_INS); in emit_single_op() [all …]
|
/PHP-7.3/ext/date/tests/ |
H A D | bug74057.phpt | 5 echo date("D Y-m-d", strtotime("saturday this week", strtotime("Sun 2017-01-01")))."\n"; 6 echo date("D Y-m-d", strtotime("saturday this week", strtotime("Mon 2017-01-02")))."\n"; 7 echo date("D Y-m-d", strtotime("saturday this week", strtotime("Tue 2017-01-03")))."\n"; 8 echo date("D Y-m-d", strtotime("saturday this week", strtotime("Wed 2017-01-04")))."\n"; 9 echo date("D Y-m-d", strtotime("saturday this week", strtotime("Thu 2017-01-05")))."\n"; 10 echo date("D Y-m-d", strtotime("saturday this week", strtotime("Fri 2017-01-06")))."\n"; 11 echo date("D Y-m-d", strtotime("saturday this week", strtotime("Sat 2017-01-07")))."\n"; 12 echo date("D Y-m-d", strtotime("saturday this week", strtotime("Sun 2017-01-08")))."\n"; 13 echo date("D Y-m-d", strtotime("saturday this week", strtotime("Mon 2017-01-09")))."\n";
|
H A D | bug54851.phpt | 2 Bug #54851 (DateTime::createFromFormat() doesn't interpret "D") 8 $date2 = DateTime::createFromFormat("D H i s", $date->format("D"). ' 0 00 00'); 11 var_dump($date->format("D") == $date2->format("D")); 14 $datePre = DateTime::createFromFormat("!D d M Y", "Fri 17 may 2011"); 15 $datePost = DateTime::createFromFormat("!d M Y D", "17 may 2011 Fri"); 23 $date2 = DateTime::createFromFormat("D H i s", "Tuesday 0 00 00"); 26 var_dump($date1->format('D') == $date2->format('D')); 29 $date1 = DateTime::createFromFormat("!D d M Y", "Fri 19 November 2011"); 36 $date1 = DateTime::createFromFormat("!D d M Y", "Sat 19 November 2011");
|
H A D | date_modify-1.phpt | 7 echo date_format($ts, 'D, d M Y H:i:s T'), "\n"; 9 echo date_format($ts, 'D, d M Y H:i:s T'), "\n"; 13 echo date_format($ts, 'D, d M Y H:i:s T'), "\n"; 15 echo date_format($ts, 'D, d M Y H:i:s T'), "\n"; 18 echo date_format($ts, 'D, d M Y H:i:s T'), "\n"; 20 echo date_format($ts, 'D, d M Y H:i:s T'), "\n";
|
/PHP-7.3/ext/standard/tests/serialize/ |
H A D | unserialize_subclasses.phpt | 7 class D extends C {} 10 $d = serialize(new D); 13 var_dump(unserialize($c, ["allowed_classes" => ["D"]])); 15 var_dump(unserialize($d, ["allowed_classes" => ["D"]])); 25 string(1) "D" 27 object(D)#%d (0) {
|
/PHP-7.3/ext/mbstring/tests/ |
H A D | mb_strcut_negative_length.phpt | 7 var_dump(mb_strcut('Déjà vu', 1, -3)); 8 var_dump(mb_strcut('Déjà vu', 1, -4)); 9 var_dump(mb_strcut('Déjà vu', 1, -5)); 10 var_dump(mb_strcut('Déjà vu', 1, -6)); 11 var_dump(mb_strcut('Déjà vu', 1, -999));
|
H A D | bug49354.phpt | 7 $crap = 'AåBäCöDü'; 16 string(12) "AåBäCöDü" 17 string(11) "åBäCöDü" 18 string(11) "åBäCöDü" 19 string(9) "BäCöDü"
|
/PHP-7.3/ext/dba/ |
H A D | config.w32 | 14 …ADD_FLAG("CFLAGS_DBA", "/D DBA_FLATFILE=1 /D DBA_CDB=1 /D DBA_CDB_MAKE=1 /D DBA_CDB_BUILTIN=1 /D D… 19 …AGS_DBA", "/D DBA_DB1=0 /D DB1_VERSION=\"\\\"Berkeley DB 1.85 emulation in DB3\\\"\" /D DB1_INCLUD…
|
/PHP-7.3/tests/lang/ |
H A D | foreachLoopObjects.002.phpt | 39 class D extends C { 61 class E extends D { 91 $myD = new D; 105 $myD = new D; 125 $myD = new D; 128 $myD = new D; 131 $myD = new D; 155 $myD = new D; 342 in D::doForEach 401 in D::doForEach [all …]
|