Home
last modified time | relevance | path

Searched refs:m (Results 126 – 150 of 488) sorted by relevance

12345678910>>...20

/PHP-7.4/ext/oci8/tests/
H A Dbug42134.phpt25 $m = oci_error($c);
26 var_dump($m);
41 $m = oci_error($c);
42 var_dump($m);
57 $m = oci_error($c);
58 var_dump($m);
H A Dcalltimeout1.phpt27 $m = oci_error($c);
28 echo "Execute error was ", $m['message'], "\n";
36 $m = oci_error($s);
37 echo "Execute error was ", $m['message'], "\n";
H A Dconnect.inc13 $m = oci_error();
14 …trigger_error("connect.inc: Failed to connect as '$user' to '$dbase': ". $m['message'], E_USER_ERR…
/PHP-7.4/ext/pcre/tests/
H A Dbug69864.phpt13 var_dump(preg_replace_callback('/a/', function($m) {
19 var_dump(preg_replace_callback('/a/', function($m) {
25 var_dump(preg_replace_callback('/a/', function($m) {
31 var_dump(preg_replace_callback('/a/', function($m) {
H A Dbug75355.phpt8 var_dump(preg_match('~^(' . preg_quote('hello#world', '~') . ')\z~x', 'hello#world', $m));
10 var_dump($m[1]);
H A Dbug38600.phpt7 var_dump(preg_match('/(?<!\w)(0x[\p{N}]+[lL]?|[\p{Nd}]+(e[\p{Nd}]*)?[lLdDfF]?)(?!\w)/', $foo, $m));
8 var_dump($m);
/PHP-7.4/ext/mbstring/libmbfl/mbfl/
H A Dmbfl_convert.c321 int mode_backup, substchar_backup, ret, n, m, r; in mbfl_filt_conv_illegal_output() local
348 m = c & ~MBFL_WCSPLANE_MASK; in mbfl_filt_conv_illegal_output()
349 switch (m) { in mbfl_filt_conv_illegal_output()
379 m = 0; in mbfl_filt_conv_illegal_output()
383 if (n || m) { in mbfl_filt_conv_illegal_output()
384 m = 1; in mbfl_filt_conv_illegal_output()
392 if (m == 0 && ret >= 0) { in mbfl_filt_conv_illegal_output()
405 m = 0; in mbfl_filt_conv_illegal_output()
409 if (n || m) { in mbfl_filt_conv_illegal_output()
410 m = 1; in mbfl_filt_conv_illegal_output()
[all …]
/PHP-7.4/ext/date/tests/
H A Dbug52113.phpt21 'm' => 6,
39 ["m"]=>
70 string(332) "O:12:"DateInterval":16:{s:1:"y";i:0;s:1:"m";i:0;s:1:"d";i:0;s:1:"h";i:4;s:1:"i";i:0;s:…
73 'm' => 0,
91 ["m"]=>
140 ["m"]=>
179 ["m"]=>
228 ["m"]=>
H A Dbug54851.phpt18 var_dump($datePre->format("Y-m-d") == $datePost->format("Y-m-d"));
33 var_dump($date1->format('Y-m-d') == $date2->format('Y-m-d'));
40 var_dump($date1->format('Y-m-d') == $date2->format('Y-m-d'));
H A Dgmstrftime_variation15.phpt20 'Time in a.m/p.m notation' => "%r",
38 --Time in a.m/p.m notation--
H A Dstrftime_variation15.phpt20 'Time in a.m/p.m notation' => "%r",
38 --Time in a.m/p.m notation--
H A Dbug33536.phpt7 print date("Y-m-d", strtotime("monkey")) ."\n";
8 print date("Y-m-d", false) ."\n";
/PHP-7.4/ext/reflection/tests/
H A Dbug79062.phpt10 I'm a string :(
14 I'm a string :)
17 private $s3 = 'I\'m a string :)';
H A D010.phpt13 $m = new ReflectionMethod("Bar::func");
14 echo $m;
/PHP-7.4/scripts/dev/
H A Dcheck_parameters.php108 …[^,;]+)?((?:\s*,\s*\**\s*\w+(?:\[\s*\w*\s*\])?\s*(?:=[^,;]+)?)*)\s*;/S', $txt, $m, PREG_SET_ORDER);
110 foreach ($m as $x) {
160 …preg_match_all('/(?:\([^)]+\))?(&?)([\w>.()-]+(?:\[\w+\])?)\s*,?((?:\)*\s*=)?)/S', $str, $m, PREG_…
162 foreach ($m as $x) {
206 foreach ($matches as $m) {
208 update_lineno($offset + $m[2][1]);
210 $vars = get_vars(substr($txt, 0, $m[0][1])); // limit var search to current location
211 $params = get_params($vars, $m[2][0]);
216 $spec = $m[1][0];
/PHP-7.4/ext/simplexml/tests/
H A D031.phpt29 $d->addChild('m:test', 'myval', 'urn::test');
33 $sxe->addChild('m:test1', 'myval', 'urn::test');
36 $n = $sxe->addChild('m:test2', 'myval', 'urn::testnew');
56 <s:test1>myval</s:test1><m:test2 xmlns:m="urn::testnew">myval</m:test2><test3 xmlns="urn::testnew">…
/PHP-7.4/ext/intl/tests/
H A Dmsgfmt_format.phpt25 $m = 4560;
36 $str_res .= dump( ut_msgfmt_format( $fmt, array($m, $t, $m/$t) ) ) . "\n";
37 $str_res .= dump( ut_msgfmt_format_message($locale, $pattern, array($m, $t, $m/$t))) . "\n";
H A Dmsgfmt_format_intlcalendar.phpt15 $msgf = new MessageFormatter('pt_PT', '{0,date,full} {0,time,h:m:s a V}');
20 '{1, select, date {{0,date,full}} other {{0,time,h:m:s a V}}}');
29 Quinta-feira, 17 de Maio de 2012 5:35:36 p.m. WEST
/PHP-7.4/ext/standard/tests/file/
H A Dbug20424.phpt7 echo "I'm alive!\n";
10 I'm alive!
/PHP-7.4/Zend/tests/
H A Dbug69167.phpt5 function l($m) {
6 echo $m . "\n";
/PHP-7.4/ext/curl/
H A Dconfig.w3210 var m = reg.exec(file_get_contents(PHP_PHP_BUILD + "/include/curl/curlver.h"));
11 if (!!m && m.length >= 2) {
12 ver_num = parseInt(m[1]);
/PHP-7.4/ext/pdo_pgsql/
H A Dphp_pdo_pgsql_int.h82 #define pdo_pgsql_error_msg(d,e,m) _pdo_pgsql_error(d, NULL, e, NULL, m, __FILE__, __LINE__) argument
84 #define pdo_pgsql_error_stmt_msg(s,e,m) _pdo_pgsql_error(s->dbh, s, e, NULL, m, __FILE__, __LINE__) argument
/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd_debug.h53 struct st_mysqlnd_debug_methods *m; member
99 #define DBG_INF_EX(dbg_obj, msg) do { if (dbg_skip_trace == FALSE && (dbg_obj)) (dbg_obj)->m->log(…
100 #define DBG_ERR_EX(dbg_obj, msg) do { if (dbg_skip_trace == FALSE && (dbg_obj)) (dbg_obj)->m->log(…
101 #define DBG_INF_FMT_EX(dbg_obj, ...) do { if (dbg_skip_trace == FALSE && (dbg_obj)) (dbg_obj)->m->l…
102 #define DBG_ERR_FMT_EX(dbg_obj, ...) do { if (dbg_skip_trace == FALSE && (dbg_obj)) (dbg_obj)->m->l…
125 …dbg_skip_trace = !(dbg_obj1)->m->func_enter((dbg_obj1), __LINE__, __FILE__, func_name, strlen(func…
128 …dbg_skip_trace |= !(dbg_obj2)->m->func_enter((dbg_obj2), __LINE__, __FILE__, func_name, strlen(fun…
150 (dbg_obj1)->m->func_leave((dbg_obj1), __LINE__, __FILE__, this_call_duration); \
153 (dbg_obj2)->m->func_leave((dbg_obj2), __LINE__, __FILE__, this_call_duration); \
/PHP-7.4/ext/fileinfo/libmagic/
H A Dder.c244 der_offs(struct magic_set *ms, struct magic *m, size_t nbytes) in der_offs() argument
252 offs, m->offset)); in der_offs()
260 offs += ms->offset + m->offset; in der_offs()
261 DPRINTF(("cont_level = %d\n", m->cont_level)); in der_offs()
263 for (size_t i = 0; i < m->cont_level; i++) in der_offs()
267 if (m->cont_level != 0) { in der_offs()
270 ms->c.li[m->cont_level - 1].off = CAST(int, offs + tlen); in der_offs()
271 DPRINTF(("cont_level[%u] = %u\n", m->cont_level - 1, in der_offs()
272 ms->c.li[m->cont_level - 1].off)); in der_offs()
278 der_cmp(struct magic_set *ms, struct magic *m) in der_cmp() argument
[all …]
/PHP-7.4/sapi/cli/tests/
H A D018.phpt2 CLI php -m
16 echo `"$php" -n -m`;

Completed in 29 milliseconds

12345678910>>...20