/PHP-7.4/tests/lang/ |
H A D | 028.phpt | 59 I'm still alive 64 I'm still alive 69 I'm still alive 74 I'm still alive 79 I'm still alive 84 I'm still alive 89 I'm still alive 94 I'm still alive 99 I'm still alive 104 I'm still alive [all …]
|
/PHP-7.4/ext/fileinfo/libmagic/ |
H A D | print.c | 53 file_mdump(struct magic *m) in file_mdump() argument 59 (m->cont_level & 7) + 1, ">>>>>>>>", m->offset); in file_mdump() 61 if (m->flag & INDIR) { in file_mdump() 64 (m->in_type < file_nnames) ? file_names[m->in_type] : in file_mdump() 71 optyp[m->in_op & FILE_OPS_MASK] : '?', m->in_offset); in file_mdump() 75 (m->type < file_nnames) ? file_names[m->type] : "*bad type"); in file_mdump() 80 if (m->str_flags) { in file_mdump() 112 if (m->str_range) in file_mdump() 122 if (m->num_mask) { in file_mdump() 129 if (m->reln != 'x') { in file_mdump() [all …]
|
H A D | softmagic.c | 286 if (*m->desc) in match() 392 if (*m->desc) in match() 561 desc = m->desc; in mprint() 657 if (m->reln == '=' || m->reln == '!') { in mprint() 865 if (m->reln == '=' || m->reln == '!') { in moffset() 1531 if (mcopy(ms, p, m->type, m->flag & INDIR, s, in mget() 1539 m->type, m->flag, offset, o, nbytes, in mget() 1684 if (mcopy(ms, p, m->type, 0, s, offset, nbytes, m) == -1) in mget() 2087 v = file_strncmp(m->value.s, p->s, CAST(size_t, m->vallen), in magiccheck() 2105 slen = MIN(m->vallen, sizeof(m->value.s)); in magiccheck() [all …]
|
H A D | apprentice.c | 1830 (void)memset(m, 0, sizeof(*m)); in parse() 1842 (void)memset(m, 0, sizeof(*m)); in parse() 2148 m->desc[sizeof(m->desc) - 1] = '\0'; in parse() 2180 m->factor_op, m->factor); in parse_strength() 2214 m->factor_op, m->factor); in parse_strength() 2548 file_names[m->type], m->desc); in check_format() 2557 file_names[m->type], m->desc); in check_format() 3369 m->str_range = swap4(m->str_range); 3370 m->str_flags = swap4(m->str_flags); 3373 m->value.q = swap8(m->value.q); [all …]
|
H A D | cdf_time.c | 70 size_t m; in cdf_getday() local 72 for (m = 0; m < __arraycount(mdays); m++) { in cdf_getday() 73 int sub = mdays[m] + (m == 1 && isleap(year)); in cdf_getday() 87 size_t m; in cdf_getmonth() local 89 for (m = 0; m < __arraycount(mdays); m++) { in cdf_getmonth() 90 days -= mdays[m]; in cdf_getmonth() 91 if (m == 1 && isleap(year)) in cdf_getmonth() 94 return CAST(int, m); in cdf_getmonth() 96 return CAST(int, m); in cdf_getmonth()
|
/PHP-7.4/ext/mysqlnd/ |
H A D | mysqlnd.h | 152 #define mysqlnd_num_rows(result) (result)->m.num_rows((result)) 153 #define mysqlnd_num_fields(result) (result)->m.num_fields((result)) 158 #define mysqlnd_field_tell(result) (result)->m.field_tell((result)) 172 #define mysqlnd_stmt_num_rows(stmt) (stmt)->m->get_num_rows((stmt)) 177 #define mysqlnd_stmt_errno(stmt) (stmt)->m->get_error_no((stmt)) 178 #define mysqlnd_stmt_error(stmt) (stmt)->m->get_error_str((stmt)) 179 #define mysqlnd_stmt_sqlstate(stmt) (stmt)->m->get_sqlstate((stmt)) 205 #define mysqlnd_ping(conn) ((conn)->data)->m->ping((conn)->data) 232 #define mysqlnd_stmt_execute(stmt) (stmt)->m->execute((stmt)) 248 #define mysqlnd_stmt_reset(stmt) (stmt)->m->reset((stmt)) [all …]
|
H A D | mysqlnd_ext_plugin.h | 131 #define mysqlnd_object_factory_set_methods(m) mysqlnd_plugin_methods_xetters.object_factory.set((m)) argument 134 #define mysqlnd_conn_set_methods(m) mysqlnd_plugin_methods_xetters.connection.set((m)) argument 137 #define mysqlnd_conn_data_set_methods(m) mysqlnd_plugin_methods_xetters.connection_data.set((m)) argument 140 #define mysqlnd_result_set_methods(m) mysqlnd_plugin_methods_xetters.result.set((m)) argument 146 #define mysqlnd_result_buffered_set_methods(m) mysqlnd_plugin_methods_xetters.buffered_result.set(… argument 149 #define mysqlnd_stmt_set_methods(m) mysqlnd_plugin_methods_xetters.statement.set((m)) argument 152 #define mysqlnd_protocol_set_methods(m) mysqlnd_plugin_methods_xetters.protocol.set((m)) argument 155 #define mysqlnd_pfc_set_methods(m) mysqlnd_plugin_methods_xetters.pfc.set((m)) argument 158 #define mysqlnd_vio_set_methods(m) mysqlnd_plugin_methods_xetters.vio.set((m)) argument 161 #define mysqlnd_command_set_methods(m) mysqlnd_plugin_methods_xetters.command.set((m)) argument [all …]
|
/PHP-7.4/ext/date/tests/ |
H A D | bug34771.phpt | 9 '12a.m.', '1a.m.', '1p.m.', 11 '12:00a.m.', '1:00a.m.', '1:00p.m.' 24 12a.m. => 2005-12-22T00:00:00+0000 25 1a.m. => 2005-12-22T01:00:00+0000 26 1p.m. => 2005-12-22T13:00:00+0000 30 12:00a.m. => 2005-12-22T00:00:00+0000 31 1:00a.m. => 2005-12-22T01:00:00+0000 32 1:00p.m. => 2005-12-22T13:00:00+0000
|
H A D | bug17988.phpt | 7 echo gmdate('Y-m-d H:i:s', strtotime("2002-06-25 14:18:48.543728"))."\n"; 8 echo gmdate('Y-m-d H:i:s', strtotime("2002-06-25 14:18:48.543728 GMT"))."\n"; 9 echo gmdate('Y-m-d H:i:s', strtotime("2002-06-25 14:18:48.543728 EDT"))."\n"; 10 echo gmdate('Y-m-d H:i:s', strtotime("2002-06-25 14:18:48.543728-00"))."\n"; 11 echo gmdate('Y-m-d H:i:s', strtotime("2002-06-25 14:18:48.543728+00"))."\n"; 12 echo gmdate('Y-m-d H:i:s', strtotime("2002-06-25 14:18:48.543728-04"))."\n"; 13 echo gmdate('Y-m-d H:i:s', strtotime("2002-06-25 14:18:48.543728+04"))."\n"; 14 echo gmdate('Y-m-d H:i:s', strtotime("2002-06-25 14:18:48.543728-0300"))."\n"; 15 echo gmdate('Y-m-d H:i:s', strtotime("2002-06-25 14:18:48.543728+0300"))."\n"; 16 echo gmdate('Y-m-d H:i:s', strtotime("2002-06-25 14:18:48.543728-0330"))."\n"; [all …]
|
H A D | bug33578.phpt | 6 echo date('m/d/Y', strtotime('Oct 11')), "\n"; 7 echo date('m/d/Y', strtotime('11 Oct')), "\n"; 8 echo date('m/d/Y', strtotime('11 Oct 2005')), "\n"; 9 echo date('m/d/Y', strtotime('Oct11')), "\n"; 10 echo date('m/d/Y', strtotime('11Oct')), "\n"; 11 echo date('m/d/Y', strtotime('11Oct 2005')), "\n"; 12 echo date('m/d/Y', strtotime('11Oct2005')), "\n";
|
/PHP-7.4/ext/date/lib/ |
H A D | dow.c | 57 m1 = timelib_is_leap(y) ? m_table_leap[m] : m_table_common[m]; in timelib_day_of_week_ex() 85 return (timelib_is_leap(y) ? d_table_leap[m] : d_table_common[m]) + d - 1; in timelib_day_of_year() 90 return timelib_is_leap(y) ? ml_table_leap[m] : ml_table_common[m]; in timelib_days_in_month() 99 doy = timelib_day_of_year(y, m, d) + 1; in timelib_isoweek_from_date() 100 if (y_leap && m > 2) { in timelib_isoweek_from_date() 104 weekday = timelib_day_of_week(y, m, d); in timelib_isoweek_from_date() 186 *m = 1; in timelib_date_from_isodate() 187 while (daynr > table[*m]) { in timelib_date_from_isodate() 188 daynr -= table[*m]; in timelib_date_from_isodate() 189 *m += 1; in timelib_date_from_isodate() [all …]
|
H A D | tm2unixtime.c | 50 (*m)++; in inc_month() 52 *m -= 12; in inc_month() 59 (*m)--; in dec_month() 61 *m += 12; in dec_month() 89 (*m)--; in do_range_limit_days_relative() 99 (*m)--; in do_range_limit_days_relative() 138 (*m)--; in do_range_limit_days() 143 (*m)++; in do_range_limit_days() 255 time->m += time->relative.m; in do_adjust_relative() 341 time->m += time->relative.m; in do_adjust_special_early() [all …]
|
/PHP-7.4/ext/pcre/tests/ |
H A D | bug47229.phpt | 9 preg_match('/[a\-c]+/', 'a---b', $m); 10 var_dump($m); 12 preg_match('/[a\-c]+/', 'a\-', $m); 13 var_dump($m); 15 preg_match("/a\-{2,}/", 'a----a', $m); 16 var_dump($m); 18 preg_match("/a\-{1,}/", 'a\----a', $m); 19 var_dump($m);
|
H A D | bug40195.phpt | 6 var_dump(preg_match('@^(/([a-z]*))*$@', '//abcde', $m)); var_dump($m); 7 var_dump(preg_match('@^(/(?:[a-z]*))*$@', '//abcde', $m)); var_dump($m); 9 var_dump(preg_match('@^(/([a-z]+))+$@', '/a/abcde', $m)); var_dump($m); 10 var_dump(preg_match('@^(/(?:[a-z]+))+$@', '/a/abcde', $m)); var_dump($m);
|
H A D | bug42298.phpt | 6 preg_match_all('/\S\S/u', $str, $m); var_dump($m); 7 preg_match_all('/\S{2}/u', $str, $m); var_dump($m); 10 preg_match_all('/\W\W/u', $str, $m); var_dump($m); 11 preg_match_all('/\W{2}/u', $str, $m); var_dump($m);
|
H A D | ungreedy.phpt | 6 var_dump(preg_match('/<.*>/', '<aa> <bb> <cc>', $m)); 7 var_dump($m); 9 var_dump(preg_match('/<.*>/U', '<aa> <bb> <cc>', $m)); 10 var_dump($m); 12 var_dump(preg_match('/(?U)<.*>/', '<aa> <bb> <cc>', $m)); 13 var_dump($m);
|
H A D | dollar_endonly.phpt | 6 var_dump(preg_match_all('/^\S+.+$/', "aeiou\n", $m)); 7 var_dump($m); 9 var_dump(preg_match_all('/^\S+.+$/D', "aeiou\n", $m)); 10 var_dump($m); 12 var_dump(preg_match_all('/^\S+\s$/D', "aeiou\n", $m)); 13 var_dump($m);
|
H A D | pcre_extended.phpt | 6 var_dump(preg_match('/a e i o u/', 'aeiou', $m)); 7 var_dump($m); 9 var_dump(preg_match('/a e i o u/x', 'aeiou', $m)); 10 var_dump($m); 12 var_dump(preg_match("/a e\ni\to\ru/x", 'aeiou', $m)); 13 var_dump($m);
|
/PHP-7.4/ext/spl/tests/ |
H A D | multiple_iterator_001.phpt | 10 $m = new MultipleIterator(); 13 foreach($m as $value) { 16 var_dump($m->current()); 18 $m->attachIterator($iter1); 19 $m->attachIterator($iter2); 20 $m->attachIterator($iter3); 26 foreach($m as $key => $value) { 30 $m->current(); 35 $m->key(); 61 $m->rewind(); [all …]
|
/PHP-7.4/ext/standard/tests/serialize/ |
H A D | bug68594.phpt | 6 $m = new StdClass(); 10 $m->aaa = array(1,2,&$u,4,5); 11 $m->bbb = 1; 12 $m->ccc = &$u; 13 $m->ddd = str_repeat("A", $i); 15 $z = serialize($m);
|
/PHP-7.4/ext/oci8/tests/ |
H A D | error_parse.phpt | 27 $m = oci_error($c1); 28 var_dump($m); 43 $m = oci_error($c2); 44 var_dump($m); 60 var_dump($m); 65 $m = oci_error(); 67 var_dump($m); 71 $m = oci_error($c1); 75 $m = oci_error($c2); 79 $m = oci_error($c3); [all …]
|
/PHP-7.4/ext/standard/tests/strings/ |
H A D | bug68710.phpt | 7 $m = new StdClass(); 11 $m->aaa = array(1,2,&$u,4,5); 12 $m->bbb = 1; 13 $m->ccc = &$u; 14 $m->ddd = str_repeat("A", $i); 16 $z = serialize($m);
|
/PHP-7.4/Zend/tests/ |
H A D | bug71428.3.phpt | 6 class B { public function m(A $a = NULL, $n) { echo "B.m";} }; 7 class C extends B { public function m(A $a , $n) { echo "C.m";} }; 10 Warning: Declaration of C::m(A $a, $n) should be compatible with B::m(?A $a, $n) in %sbug71428.3.ph…
|
/PHP-7.4/ext/sockets/tests/ |
H A D | mcast_ipv4_recv.phpt | 51 $r = socket_sendto($sends1, $m = "initial packet", strlen($m), 0, $mcastaddr, 3000); 67 $r = socket_sendto($sends1, $m = "ignored mcast packet", strlen($m), 0, $mcastaddr, 3000); 69 $r = socket_sendto($sends1, $m = "unicast packet", strlen($m), 0, "127.0.0.1", 3000); 81 $r = socket_sendto($sends1, $m = "mcast packet", strlen($m), 0, $mcastaddr, 3000); 94 $r = socket_sendto($sends1, $m = "unicast packet", strlen($m), 0, "127.0.0.1", 3000); 105 $r = socket_sendto($sends1, $m = "mcast packet from 127.0.0.1", strlen($m), 0, $mcastaddr, 3000); 115 $r = socket_sendto($sends1, $m = "ignored mcast packet", strlen($m), 0, $mcastaddr, 3000); 117 $r = socket_sendto($sends1, $m = "unicast packet", strlen($m), 0, "127.0.0.1", 3000); 128 $r = socket_sendto($sends1, $m = "mcast packet from 127.0.0.1", strlen($m), 0, $mcastaddr, 3000); 139 $r = socket_sendto($sends1, $m = "ignored mcast packet", strlen($m), 0, $mcastaddr, 3000); [all …]
|
/PHP-7.4/ext/mbstring/tests/ |
H A D | mb_ereg_replace_callback.phpt | 12 echo mb_ereg_replace_callback('(\S+)', function ($m) { 13 return $m[1].'('.strlen($m[1]).')'; 16 echo mb_ereg_replace_callback('(?<word>\w+) (?<digit>\d+).*', function ($m) { 17 return sprintf("%s-%s", $m['digit'], $m['word']);
|