Home
last modified time | relevance | path

Searched refs:d (Results 276 – 300 of 6494) sorted by relevance

1...<<11121314151617181920>>...260

/PHP-8.2/ext/zend_test/tests/
H A Dobserver_types_01.phpt28 </Error::getTraceAsString:'#0 %s(%d): foo(42)
30 …r::__toString:'TypeError: foo(): Argument #1 ($a) must be of type array, int given, called in %s:%d
32 #0 %s%eobserver_types_%d.php(%d): foo(42)
35 …rror: Uncaught TypeError: foo(): Argument #1 ($a) must be of type array, int given, called in %s:%d
37 #0 %s%eobserver_types_%d.php(%d): foo(42)
39 thrown in %s%eobserver_types_%d.php on line %d
/PHP-8.2/ext/date/tests/
H A Dbug52062.phpt11 $d = new DateTime('@100000000000');
12 var_dump($d->format('Y-m-d H:i:s U'));
14 var_dump($d->getTimestamp());
18 var_dump($d->format('U'));
21 $d->setTimestamp(100000000000);
25 var_dump($d->format('Y-m-d H:i:s U'));
27 var_dump($d->getTimestamp());
H A Didate_variation4.phpt13 'Day of the month' => 'd',
34 int(%d)
37 int(%d)
40 int(%d)
43 int(%d)
46 int(%d)
49 int(%d)
52 int(%d)
55 int(%d)
58 int(%d)
H A Dbug67109.phpt7 var_dump(date('d.m.Y',strtotime('last day of april')));
8 var_dump(date('d.m.Y',strtotime('Last day of april')));
9 var_dump(date('d.m.Y',strtotime('lAst Day of April')));
12 string(10) "30.04.%d"
13 string(10) "30.04.%d"
14 string(10) "30.04.%d"
/PHP-8.2/Zend/tests/zend_ini/
H A Dzend_ini_parse_quantity_overflow.phpt44 printf("%d\n", zend_test_zend_ini_parse_quantity($value));
62 # No overflow 004: "%d"
63 %d
66 # No overflow 005: "-%d"
67 -%d
78 # Subject overflow 001: "%d"
80 Warning: Invalid quantity "%d": value is out of range, using overflow result for backwards compatib…
84 # Subject overflow 002: "-%d"
86 Warning: Invalid quantity "-%d": value is out of range, using overflow result for backwards compati…
92 …ty "%dK": value is out of range, using overflow result for backwards compatibility in %s on line %d
[all …]
/PHP-8.2/ext/date/lib/
H A Dastro.c33 #define days_since_2000_Jan_0(y,m,d) \ argument
113 static double astro_GMST0(double d) in astro_GMST0() argument
133 static void astro_sunpos(double d, double *lon, double *r) in astro_sunpos() argument
144 M = astro_revolution(356.0470 + 0.9856002585 * d); in astro_sunpos()
145 w = 282.9404 + 4.70935E-5 * d; in astro_sunpos()
146 e = 0.016709 - 1.151E-9 * d; in astro_sunpos()
165 astro_sunpos(d, &lon, r); in astro_sun_RA_dec()
172 obl_ecl = 23.4393 - 3.563E-7 * d; in astro_sun_RA_dec()
238 t_utc->d = t_loc->d; in timelib_astro_rise_set_altitude()
244 d = timelib_ts_to_j2000(timestamp) + 2 - lon/360.0; in timelib_astro_rise_set_altitude()
[all …]
/PHP-8.2/ext/mysqli/tests/
H A Dmysqli_kill.phpt78 string(%d) "%s"
80 object(mysqli)#%d (%d) {
84 string(%d) "%s"
86 int(%d)
92 int(%d)
94 string(%d) "%s"
100 int(%d)
110 string(%d) "%s"
116 string(%d) "%s"
118 int(%d)
[all …]
H A Dmysqli_autocommit_oo.phpt29 printf("[003] [%d] %s\n", $mysqli->errno, $mysqli->error);
32 printf("[004] [%d] %s\n", $mysqli->errno, $mysqli->error);
43 printf("[007] [%d] %s\n", $mysqli->errno, $mysqli->error);
50 printf("[009] [%d] %s\n", $mysqli->errno, $mysqli->error);
57 printf("[011] [%d] %s\n", $mysqli->errno, $mysqli->error);
60 printf("[012] [%d] %s\n", $mysqli->errno, $mysqli->error);
63 printf("[013] [%d] %s\n", $mysqli->errno, $mysqli->error);
66 printf("[014] Expecting 1 row in table test, found %d rows. [%d] %s\n",
72 printf("[015] [%d] %s\n", $mysqli->errno, $mysqli->error);
75 printf("[016] [%d] %s\n", $mysqli->errno, $mysqli->error);
[all …]
H A Dbug_mysql_49406.phpt68 printf("Field : %d\n", $field_idx);
74 printf("Length : %d\n", $field->length);
75 printf("Charsetnr : %d\n", $field->charsetnr);
76 printf("Flags : %d\n", $field->flags);
78 printf("Decimals : %d\n", $field->decimals);
102 Maxlength : %d
103 Length : %d
104 Charsetnr : %d
105 Flags : %d
106 Type : %d (%s)
[all …]
/PHP-8.2/Zend/tests/
H A Dclosure_041.phpt48 $d = $staticUnscoped->bindTo(null); $d(); echo "\n";
49 $d = $nonstaticUnscoped->bindTo(null); $d(); echo "\n";
50 $d = $staticScoped->bindTo(null); $d(); echo "\n";
51 $d = $nonstaticScoped->bindTo(null); var_dump($d); echo "\n";
54 $d = $staticUnscoped->bindTo(new A);
55 $d = $nonstaticUnscoped->bindTo(new A); $d(); echo " (should be scoped to dummy class)\n";
56 $d = $staticScoped->bindTo(new A);
57 $d = $nonstaticScoped->bindTo(new A); $d(); echo "\n";
60 $d = $nonstaticUnscoped->bindTo(new B); $d(); echo " (should be scoped to dummy class)\n";
61 $d = $nonstaticScoped->bindTo(new B); $d(); echo "\n";
[all …]
/PHP-8.2/Zend/tests/type_declarations/
H A Dscalar_basic.phpt87 *** Trying int(%d)
88 int(%d)
100 *** Caught {closure}(): Argument #1 ($i) must be of type int, null given, called in %s on line %d
114 *** Trying resource(%d) of type (stream)
140 *** Trying int(%d)
167 *** Trying resource(%d) of type (stream)
193 *** Trying int(%d)
194 string(%d) "%d"
220 *** Trying resource(%d) of type (stream)
246 *** Trying int(%d)
[all …]
/PHP-8.2/ext/standard/tests/serialize/
H A Dserialization_objects_013.phpt87 object(stdClass)#%d (3) {
96 object(stdClass)#%d (3) {
104 object(stdClass)#%d (3) {
112 object(stdClass)#%d (3) {
120 object(stdClass)#%d (3) {
131 object(stdClass)#%d (3) {
140 object(stdClass)#%d (3) {
148 object(stdClass)#%d (3) {
156 object(stdClass)#%d (3) {
164 object(stdClass)#%d (3) {
[all …]
/PHP-8.2/ext/oci8/tests/
H A Dextauth_01.phpt93 $c = oci_connect('/', '', 'd', null, OCI_SYSDBA+OCI_CRED_EXT);
144 Warning: oci_connect(): ORA-12154: %s in %s on line %d
149 string(%d) "ORA-12154: %s"
158 Warning: oci_connect(): ORA-12154: %s in %s on line %d
163 string(%d) "ORA-12154: %s"
172 Warning: oci_connect(): ORA-%d: TNS:%s in %s on line %d
175 int(%d)
177 string(%d) "ORA-%d: %s"
186 Warning: oci_connect(): ORA-%d: TNS:%s in %s on line %d
189 int(%d)
[all …]
H A Dextauth_02.phpt93 $c = oci_new_connect('/', '', 'd', null, OCI_SYSDBA+OCI_CRED_EXT);
144 Warning: oci_new_connect(): ORA-12154: %s in %s on line %d
149 string(%d) "ORA-12154: %s"
158 Warning: oci_new_connect(): ORA-12154: %s in %s on line %d
163 string(%d) "ORA-12154: %s"
172 Warning: oci_new_connect(): ORA-%d: TNS:%s %s on line %d
175 int(%d)
177 string(%d) "ORA-%d: %s"
186 Warning: oci_new_connect(): ORA-%d: TNS:%s %s on line %d
189 int(%d)
[all …]
H A Dextauth_03.phpt93 $c = oci_pconnect('/', '', 'd', null, OCI_SYSDBA+OCI_CRED_EXT);
144 Warning: oci_pconnect(): ORA-12154: %s in %s on line %d
149 string(%d) "ORA-12154: %s"
158 Warning: oci_pconnect(): ORA-12154: %s in %s on line %d
163 string(%d) "ORA-12154: %s"
172 Warning: oci_pconnect(): ORA-%d: TNS:%s in %s on line %d
175 int(%d)
177 string(%d) "ORA-%d: %s"
186 Warning: oci_pconnect(): ORA-%d: TNS:%s in %s on line %d
189 int(%d)
[all …]
/PHP-8.2/ext/standard/tests/array/
H A Dshuffle_basic1.phpt79 int(%d)
81 int(%d)
83 int(%d)
85 int(%d)
87 int(%d)
89 int(%d)
91 int(%d)
93 int(%d)
95 int(%d)
126 string(%d) "%s"
[all …]
/PHP-8.2/ext/simplexml/tests/
H A Dsxe_001.phpt30 object(SimpleXMLIterator)#%d (2) {
37 object(SimpleXMLIterator)#%d (3) {
44 object(SimpleXMLIterator)#%d (0) {
47 object(SimpleXMLIterator)#%d (1) {
49 object(SimpleXMLIterator)#%d (1) {
51 object(SimpleXMLIterator)#%d (1) {
53 object(SimpleXMLIterator)#%d (0) {
/PHP-8.2/ext/phar/tests/cache_list/files/
H A Dwrite6.phar3 $d = dirname(__FILE__) . "/copyonwrite6";
4 mkdir($d);
5 file_put_contents($d . "/file1", "file1\n");
6 file_put_contents($d . "/file2", "file2\n");
7 …ar->buildFromIterator(new RecursiveDirectoryIterator($d, RecursiveDirectoryIterator::SKIP_DOTS),$d
8 $arr = $phar->buildFromDirectory($d);
/PHP-8.2/tests/security/
H A Dopen_basedir_filemtime.phpt23 …basedir restriction in effect. File(../bad) is not within the allowed path(s): (.) in %s on line %d
29 …pen_basedir restriction in effect. File(..) is not within the allowed path(s): (.) in %s on line %d
32 …en_basedir restriction in effect. File(../) is not within the allowed path(s): (.) in %s on line %d
35 …open_basedir restriction in effect. File(/) is not within the allowed path(s): (.) in %s on line %d
38 …sedir restriction in effect. File(../bad/.) is not within the allowed path(s): (.) in %s on line %d
47 …basedir restriction in effect. File(./../.) is not within the allowed path(s): (.) in %s on line %d
49 int(%d)
50 int(%d)
51 int(%d)
52 int(%d)
[all …]
H A Dopen_basedir_fileowner.phpt23 …basedir restriction in effect. File(../bad) is not within the allowed path(s): (.) in %s on line %d
29 …pen_basedir restriction in effect. File(..) is not within the allowed path(s): (.) in %s on line %d
32 …en_basedir restriction in effect. File(../) is not within the allowed path(s): (.) in %s on line %d
35 …open_basedir restriction in effect. File(/) is not within the allowed path(s): (.) in %s on line %d
38 …sedir restriction in effect. File(../bad/.) is not within the allowed path(s): (.) in %s on line %d
47 …basedir restriction in effect. File(./../.) is not within the allowed path(s): (.) in %s on line %d
49 int(%d)
50 int(%d)
51 int(%d)
52 int(%d)
[all …]
H A Dopen_basedir_fileperms.phpt23 …basedir restriction in effect. File(../bad) is not within the allowed path(s): (.) in %s on line %d
29 …pen_basedir restriction in effect. File(..) is not within the allowed path(s): (.) in %s on line %d
32 …en_basedir restriction in effect. File(../) is not within the allowed path(s): (.) in %s on line %d
35 …open_basedir restriction in effect. File(/) is not within the allowed path(s): (.) in %s on line %d
38 …sedir restriction in effect. File(../bad/.) is not within the allowed path(s): (.) in %s on line %d
47 …basedir restriction in effect. File(./../.) is not within the allowed path(s): (.) in %s on line %d
49 int(%d)
50 int(%d)
51 int(%d)
52 int(%d)
[all …]
H A Dopen_basedir_filesize.phpt23 …basedir restriction in effect. File(../bad) is not within the allowed path(s): (.) in %s on line %d
29 …pen_basedir restriction in effect. File(..) is not within the allowed path(s): (.) in %s on line %d
32 …en_basedir restriction in effect. File(../) is not within the allowed path(s): (.) in %s on line %d
35 …open_basedir restriction in effect. File(/) is not within the allowed path(s): (.) in %s on line %d
38 …sedir restriction in effect. File(../bad/.) is not within the allowed path(s): (.) in %s on line %d
47 …basedir restriction in effect. File(./../.) is not within the allowed path(s): (.) in %s on line %d
49 int(%d)
50 int(%d)
51 int(%d)
52 int(%d)
[all …]
H A Dopen_basedir_fileatime.phpt23 …basedir restriction in effect. File(../bad) is not within the allowed path(s): (.) in %s on line %d
29 …pen_basedir restriction in effect. File(..) is not within the allowed path(s): (.) in %s on line %d
32 …en_basedir restriction in effect. File(../) is not within the allowed path(s): (.) in %s on line %d
35 …open_basedir restriction in effect. File(/) is not within the allowed path(s): (.) in %s on line %d
38 …sedir restriction in effect. File(../bad/.) is not within the allowed path(s): (.) in %s on line %d
47 …basedir restriction in effect. File(./../.) is not within the allowed path(s): (.) in %s on line %d
49 int(%d)
50 int(%d)
51 int(%d)
52 int(%d)
[all …]
H A Dopen_basedir_filectime.phpt23 …basedir restriction in effect. File(../bad) is not within the allowed path(s): (.) in %s on line %d
29 …pen_basedir restriction in effect. File(..) is not within the allowed path(s): (.) in %s on line %d
32 …en_basedir restriction in effect. File(../) is not within the allowed path(s): (.) in %s on line %d
35 …open_basedir restriction in effect. File(/) is not within the allowed path(s): (.) in %s on line %d
38 …sedir restriction in effect. File(../bad/.) is not within the allowed path(s): (.) in %s on line %d
47 …basedir restriction in effect. File(./../.) is not within the allowed path(s): (.) in %s on line %d
49 int(%d)
50 int(%d)
51 int(%d)
52 int(%d)
[all …]
/PHP-8.2/ext/standard/tests/dir/
H A Dscandir_variation8.phpt72 resource(%d) of type (stream)
75 resource(%d) of type (stream)
78 resource(%d) of type (stream)
81 resource(%d) of type (stream)
84 resource(%d) of type (stream)
87 resource(%d) of type (stream)
90 resource(%d) of type (stream)
93 resource(%d) of type (stream)
96 resource(%d) of type (stream)
99 resource(%d) of type (stream)
[all …]

Completed in 39 milliseconds

1...<<11121314151617181920>>...260