Home
last modified time | relevance | path

Searched refs:c (Results 426 – 450 of 4053) sorted by relevance

1...<<11121314151617181920>>...163

/PHP-7.4/ext/mbstring/tests/
H A Dbug77428.phpt12 var_dump(mb_ereg_replace('(%)', '\\\1', 'a%c'));
14 var_dump(mb_ereg_replace('(%)', '\\\\1', 'a%c'));
18 string(4) "a\%c"
19 string(4) "a\%c"
/PHP-7.4/Zend/tests/
H A Dbug49472.phpt7 const c = 'Sea';
16 const c = 'Ocean';
19 return ia::c;
27 Fatal error: Cannot inherit previously-inherited or override constant c from interface ia in %s on …
H A Dclosure_048.phpt8 $c = function($matches) use (&$params, &$text) {
12 preg_replace_callback( '/(\?)/', $c, $text );
19 echo replace_variables('a=?, b=?, c=?', array('0', '1', '2')) . "\n";
25 a=0, b=1, c=2
H A Dbug79862.phpt27 class c extends a {
36 $c = new c;
40 Notice: Accessing static property c::$prop5 as non static in %s on line %d
42 Notice: Accessing static property c::$prop6 as non static in %s on line %d
47 object(c)#1 (6) {
H A Dbug40899.phpt5 list(list($a,$b),$c)=array(array('a','b'),'c');
6 echo "$a$b$c\n";
H A Dbug62343.phpt7 $c = get_declared_classes();
8 var_dump(end($c));
9 var_dump(prev($c));
/PHP-7.4/ext/intl/tests/
H A Duconverter_oop_subst.phpt9 $c = new UConverter('ascii', 'utf-8');
12 if (!$c->setSubstChars($subst)) {
16 var_dump($c->convert("This is an ascii string"));
17 var_dump($c->convert("Snowman: (\xE2\x98\x83)"));
/PHP-7.4/ext/oci8/tests/
H A Dimp_res_lob.phpt2 Oracle Database 12c Implicit Result Sets: LOBs
8 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
10 die("skip expected output only valid when using Oracle Database 12c or greater");
14 die("skip works only with Oracle 12c or greater version of Oracle client libraries");
29 "insert into imp_res_lob_tab values (3, 'ccccc', 'c')",
44 oci8_test_sql_execute($c, $stmtarray);
49 $s = oci_parse($c, "begin imp_res_lob_proc(); end;");
63 $s = oci_parse($c, "begin imp_res_lob_proc(); end;");
82 oci8_test_sql_execute($c, $stmtarray);
91 3 ccccc c
H A Dimp_res_2.phpt2 Oracle Database 12c Implicit Result Sets: Zero Rows
8 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
10 die("skip expected output only valid when using Oracle Database 12c or greater");
14 die("skip works only with Oracle 12c or greater version of Oracle client libraries");
52 oci8_test_sql_execute($c, $stmtarray);
57 $s = oci_parse($c, "begin imp_res_2_proc_a(); end;");
63 $s = oci_parse($c, "begin imp_res_2_proc_b(); end;");
69 $s = oci_parse($c, "begin imp_res_2_proc_c(); end;");
82 oci8_test_sql_execute($c, $stmtarray);
H A Dimp_res_6.phpt2 Oracle Database 12c Implicit Result Sets: alternating oci_fetch_* calls
8 …[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)*/', oci_server_version($c), $matches);
10 die("skip expected output only valid when using Oracle Database 12c or greater");
14 die("skip works only with Oracle 12c or greater version of Oracle client libraries");
29 "insert into imp_res_6_tab values (3, 'c')",
42 oci8_test_sql_execute($c, $stmtarray);
47 $s = oci_parse($c, "begin imp_res_6_proc(); end;");
71 oci8_test_sql_execute($c, $stmtarray);
94 string(1) "c"
/PHP-7.4/tests/lang/
H A DforeachLoopObjects.006.phpt9 public $c = "Original c";
19 $obj2->c = "new c";
76 string(10) "Original c"
84 ["c"]=>
85 string(5) "new c"
97 string(10) "Original c"
133 ["c"]=>
134 string(10) "Original c"
/PHP-7.4/ext/mbstring/libmbfl/mbfl/
H A Dmbfl_convert.c235 return (*filter->filter_function)(c, filter); in mbfl_convert_filter_feed()
306 int c; in mbfl_convert_filter_strcat() local
308 while ((c = *p++) != '\0') { in mbfl_convert_filter_strcat()
343 if (c >= 0) { in mbfl_filt_conv_illegal_output()
347 if (c < MBFL_WCSGROUP_WCHARMAX) { in mbfl_filt_conv_illegal_output()
348 m = c & ~MBFL_WCSPLANE_MASK; in mbfl_filt_conv_illegal_output()
372 c &= MBFL_WCSPLANE_MASK; in mbfl_filt_conv_illegal_output()
375 c &= MBFL_WCSGROUP_MASK; in mbfl_filt_conv_illegal_output()
382 n = (c >> r) & 0xf; in mbfl_filt_conv_illegal_output()
399 if (c >= 0) { in mbfl_filt_conv_illegal_output()
[all …]
/PHP-7.4/ext/soap/tests/bugs/
H A Dbug30928.phpt12 protected $c="c";
52 ["c"]=>
53 string(1) "c"
60 ["c":protected]=>
61 string(1) "c"
/PHP-7.4/ext/ctype/tests/
H A Dctype_alnum_variation4.phpt7 /* Prototype : bool ctype_alnum(mixed $c)
9 * Source code: ext/ctype/ctype.c
25 foreach($octal_values as $c) {
27 var_dump(ctype_alnum($c));
33 foreach($hex_values as $c) {
35 var_dump(ctype_alnum($c));
H A Dctype_cntrl_variation4.phpt7 /* Prototype : bool ctype_cntrl(mixed $c)
9 * Source code: ext/ctype/ctype.c
25 foreach($octal_values as $c) {
27 var_dump(ctype_cntrl($c));
33 foreach($hex_values as $c) {
35 var_dump(ctype_cntrl($c));
H A Dctype_lower_variation4.phpt7 /* Prototype : bool ctype_lower(mixed $c)
9 * Source code: ext/ctype/ctype.c
25 foreach($octal_values as $c) {
27 var_dump(ctype_lower($c));
33 foreach($hex_values as $c) {
35 var_dump(ctype_lower($c));
H A Dctype_print_variation4.phpt7 /* Prototype : bool ctype_print(mixed $c)
9 * Source code: ext/ctype/ctype.c
25 foreach($octal_values as $c) {
27 var_dump(ctype_print($c));
33 foreach($hex_values as $c) {
35 var_dump(ctype_print($c));
H A Dctype_upper_variation4.phpt7 /* Prototype : bool ctype_upper(mixed $c)
9 * Source code: ext/ctype/ctype.c
24 foreach($octal_values as $c) {
26 var_dump(ctype_upper($c));
32 foreach($hex_values as $c) {
34 var_dump(ctype_upper($c));
H A Dctype_alpha_variation4.phpt7 /* Prototype : bool ctype_alpha(mixed $c)
9 * Source code: ext/ctype/ctype.c
25 foreach($octal_values as $c) {
27 var_dump(ctype_alpha($c));
33 foreach($hex_values as $c) {
35 var_dump(ctype_alpha($c));
H A Dctype_graph_variation4.phpt7 /* Prototype : bool ctype_graph(mixed $c)
9 * Source code: ext/ctype/ctype.c
25 foreach($octal_values as $c) {
27 var_dump(ctype_graph($c));
33 foreach($hex_values as $c) {
35 var_dump(ctype_graph($c));
/PHP-7.4/sapi/cli/
H A Dphp_http_parser.c240 #define LOWER(c) (unsigned char)(c | 0x20) argument
241 #define TOKEN(c) tokens[(unsigned char)c] argument
262 signed char c; in php_http_parser_execute() local
599 c = LOWER(ch); in php_http_parser_execute()
601 if (c >= 'a' && c <= 'z') { in php_http_parser_execute()
612 c = LOWER(ch); in php_http_parser_execute()
614 if (c >= 'a' && c <= 'z') break; in php_http_parser_execute()
642 c = LOWER(ch); in php_http_parser_execute()
643 if (c >= 'a' && c <= 'z') break; in php_http_parser_execute()
988 switch (c) { in php_http_parser_execute()
[all …]
/PHP-7.4/ext/phar/tests/
H A Dphar_ctx_001.phpt18 $files['c'] = 'c';
28 var_dump(file_get_contents($pname . '/c'));
29 var_dump($phar['c']->isCompressed());
45 var_dump(file_get_contents($pname . '/c'));
46 var_dump($phar['c']->isCompressed());
47 var_dump($phar['c']->getMetaData());
71 string(1) "c"
84 string(1) "c"
/PHP-7.4/ext/standard/tests/file/
H A Dpathinfo_basic2-win32.phpt19 'c:\..\dir1',
22 'c:\test\adir\afile..txt',
24 'c:\test\adir\afile.',
27 'c:afile.txt',
54 string(5) "c:\.."
60 string(5) "c:\.."
97 string(12) "c:\test\adir"
103 string(12) "c:\test\adir"
127 string(12) "c:\test\adir"
170 string(3) "c:."
[all …]
/PHP-7.4/ext/tidy/tests/
H A D030.phpt18 $c = $tidy->getConfig();
19 var_dump($c['indent']);
20 var_dump($c['indent-attributes']);
21 var_dump($c['indent-spaces']);
/PHP-7.4/ext/standard/tests/array/
H A Dbug41686.phpt6 $b = array('a'=>1,'b'=>1,'c'=>2);
41 ["c"]=>
47 ["c"]=>
53 ["c"]=>

Completed in 63 milliseconds

1...<<11121314151617181920>>...163