Home
last modified time | relevance | path

Searched refs:s (Results 1 – 25 of 3823) sorted by relevance

12345678910>>...153

/PHP-7.4/ext/fileinfo/tests/
H A Dbug68819_001.phpt9s---------------a---------a---a--s-a-----a-----------asy---------a-----a-----------a----s--------a…
/PHP-7.4/ext/standard/tests/serialize/
H A Dbug68545.phpt5s:3:"322";s:3:"bar";s:3:"bar";s:3:"foo";a:6:{a:6:{s:3:"322";s:3:"bar";s:3:"bar";s:3:"foo";s:3:"bar…
/PHP-7.4/ext/date/tests/
H A Dbug53437_var6.phpt7s = 'O:12:"DateInterval":16:{s:1:"y";s:1:"2";s:1:"m";s:1:"0";s:1:"d";s:3:"bla";s:1:"h";s:1:"6";s:1…
9 $di = unserialize($s);
26 ["s"]=>
H A Dbug53437_var3.phpt7s = 'O:12:"DateInterval":15:{s:1:"y";s:1:"2";s:1:"m";s:1:"0";s:1:"d";s:3:"bla";s:1:"h";s:1:"6";s:1…
9 $di = unserialize($s);
26 ["s"]=>
H A Dbug53437_var5.phpt7s = 'O:12:"DateInterval":15:{s:1:"y";s:1:"2";s:1:"m";s:1:"0";s:1:"d";s:3:"bla";s:1:"h";s:1:"6";s:1…
9 $di = unserialize($s);
26 ["s"]=>
/PHP-7.4/ext/mbstring/tests/
H A Dmb_convert_encoding.phpt23 $s = mb_convert_encoding($s, 'EUC-JP', 'SJIS');
27 $s = mb_convert_encoding($s, 'EUC-JP', 'JIS');
35 $s = mb_convert_encoding($s, 'JIS', 'EUC-JP');
44 $s = mb_convert_encoding($s, 'EUC-JP', $a);
48 $s = mb_convert_encoding($s, 'SJIS', $a);
52 $s = mb_convert_encoding($s, 'JIS', $a);
61 $s = mb_convert_encoding($s, 'EUC-JP', $a);
65 $s = mb_convert_encoding($s, 'SJIS', $a);
69 $s = mb_convert_encoding($s, 'JIS', $a);
99 $s = mb_convert_encoding($s, 'BAD');
[all …]
H A Dmb_detect_encoding.phpt22 $s = mb_detect_encoding($s, 'SJIS');
26 $s = mb_detect_encoding($s, 'JIS');
30 $s = mb_detect_encoding($s, 'UTF-8,EUC-JP,JIS');
34 $s = mb_detect_encoding($s, 'JIS,EUC-JP');
46 $s = mb_detect_encoding($s, $a);
50 $s = mb_detect_encoding($s, $a);
54 $s = mb_detect_encoding($s, $a);
65 $s = mb_detect_encoding($s);
69 $s = mb_detect_encoding($s);
73 $s = mb_detect_encoding($s);
[all …]
/PHP-7.4/ext/gd/libgd/
H A Dgdhelpers.c25 if (!s) in gd_strtok_r()
31 if (!(*s)) in gd_strtok_r()
41 s++; in gd_strtok_r()
45 if (!(*s)) in gd_strtok_r()
47 *state = s; in gd_strtok_r()
52 result = s; in gd_strtok_r()
58 *state = s; in gd_strtok_r()
61 s++; in gd_strtok_r()
65 *s = '\0'; in gd_strtok_r()
68 s++; in gd_strtok_r()
[all …]
/PHP-7.4/ext/mbstring/libmbfl/filters/
H A Dmbfilter_tl_jisx0201_jisx0208.c43 int s, n; in mbfl_filt_tl_jisx0201_jisx0208() local
46 s = c; in mbfl_filt_tl_jisx0201_jisx0208()
62 s = 0x3000; in mbfl_filt_tl_jisx0201_jisx0208()
176 s = 0x20; in mbfl_filt_tl_jisx0201_jisx0208()
178 s = 0x2d; in mbfl_filt_tl_jisx0201_jisx0208()
237 s = 0x5c; in mbfl_filt_tl_jisx0201_jisx0208()
239 s = 0x5c; in mbfl_filt_tl_jisx0201_jisx0208()
241 s = 0x7e; in mbfl_filt_tl_jisx0201_jisx0208()
243 s = 0x7e; in mbfl_filt_tl_jisx0201_jisx0208()
245 s = 0x27; in mbfl_filt_tl_jisx0201_jisx0208()
[all …]
H A Dmbfilter_utf7imap.c71 int s, n; in mbfl_filt_conv_utf7imap_wchar() local
132 if (s >= 0xd800 && s < 0xdc00) { in mbfl_filt_conv_utf7imap_wchar()
133 s = (((s & 0x3ff) << 16) + 0x400000) | n; in mbfl_filt_conv_utf7imap_wchar()
135 } else if (s >= 0xdc00 && s < 0xe000) { in mbfl_filt_conv_utf7imap_wchar()
164 if (s >= 0xd800 && s < 0xdc00) { in mbfl_filt_conv_utf7imap_wchar()
165 s = (((s & 0x3ff) << 16) + 0x400000) | n; in mbfl_filt_conv_utf7imap_wchar()
167 } else if (s >= 0xdc00 && s < 0xe000) { in mbfl_filt_conv_utf7imap_wchar()
191 if (s >= 0xd800 && s < 0xdc00) { in mbfl_filt_conv_utf7imap_wchar()
192 s = (((s & 0x3ff) << 16) + 0x400000); in mbfl_filt_conv_utf7imap_wchar()
194 } else if (s >= 0xdc00 && s < 0xe000) { in mbfl_filt_conv_utf7imap_wchar()
[all …]
H A Dmbfilter_utf7.c98 int s, n; in mbfl_filt_conv_utf7_wchar() local
159 if (s >= 0xd800 && s < 0xdc00) { in mbfl_filt_conv_utf7_wchar()
160 s = (((s & 0x3ff) << 16) + 0x400000) | n; in mbfl_filt_conv_utf7_wchar()
162 } else if (s >= 0xdc00 && s < 0xe000) { in mbfl_filt_conv_utf7_wchar()
191 if (s >= 0xd800 && s < 0xdc00) { in mbfl_filt_conv_utf7_wchar()
192 s = (((s & 0x3ff) << 16) + 0x400000) | n; in mbfl_filt_conv_utf7_wchar()
194 } else if (s >= 0xdc00 && s < 0xe000) { in mbfl_filt_conv_utf7_wchar()
218 if (s >= 0xd800 && s < 0xdc00) { in mbfl_filt_conv_utf7_wchar()
219 s = (((s & 0x3ff) << 16) + 0x400000); in mbfl_filt_conv_utf7_wchar()
221 } else if (s >= 0xdc00 && s < 0xe000) { in mbfl_filt_conv_utf7_wchar()
[all …]
/PHP-7.4/ext/spl/tests/
H A Diterator_050.phpt36 %s(1) "1"
38 %s(1) "2"
45 %s(1) "1"
47 %s(1) "2"
52 %s(1) "1"
54 %s(1) "1"
59 %s(1) "1"
61 %s(1) "1"
66 %s(1) "1"
68 %s(1) "1"
[all …]
/PHP-7.4/ext/standard/
H A Duuencode.c81 ee = s + len; in php_uuencode()
97 s += 3; in php_uuencode()
105 if (s < e) { in php_uuencode()
113 *p++ = ((e - s) > 1) ? PHP_UU_ENC_C3(s) : PHP_UU_ENC('\0'); in php_uuencode()
138 s = src; in php_uudecode()
162 *p++ = PHP_UU_DEC(*s) << 2 | PHP_UU_DEC(*(s + 1)) >> 4; in php_uudecode()
164 *p++ = PHP_UU_DEC(*(s + 2)) << 6 | PHP_UU_DEC(*(s + 3)); in php_uudecode()
165 s += 4; in php_uudecode()
173 s++; in php_uudecode()
178 *p++ = PHP_UU_DEC(*s) << 2 | PHP_UU_DEC(*(s + 1)) >> 4; in php_uudecode()
[all …]
/PHP-7.4/ext/json/
H A Djson_scanner.re109 s->token = s->cursor;
189 ZVAL_STRINGL(&s->value, (char *) s->token, s->cursor - s->token);
202 if (s->limit < s->cursor) {
210 s->str_start = s->cursor;
263 size_t len = s->cursor - s->str_start - s->str_esc - 1 + s->utf8_invalid_count;
274 s->cursor = s->str_start;
305 s->str_start = s->cursor;
313 s->str_start = s->cursor;
322 s->str_start = s->cursor;
335 s->str_start = s->cursor;
[all …]
/PHP-7.4/ext/standard/tests/strings/
H A Dsprintf_variation19.phpt37 "%Ls"," %s", "%s ",
38 "\t%s", "\n%s", "%4s",
39 "%30s", "%[a-zA-Z0-9]", "%*s"
59 string(1) "s"
61 string(1) "s"
70 string(1) "s"
74 string(1) "s"
76 string(1) "s"
85 string(1) "s"
89 string(1) "s"
[all …]
H A Dsprintf_variation16.phpt34 "%Ls"," %s", "%s ",
35 "\t%s", "\n%s", "%4s",
36 "%30s", "%[a-zA-Z0-9]", "%*s"
56 string(1) "s"
58 string(1) "s"
67 string(1) "s"
71 string(1) "s"
73 string(1) "s"
82 string(1) "s"
86 string(1) "s"
[all …]
/PHP-7.4/ext/standard/tests/general_functions/
H A Duniqid_basic.phpt42 string(13) "%s"
43 string(23) "%s.%s"
44 string(13) "%s"
49 string(28) "99999%s.%s"
53 string(28) "99999%s.%s"
57 string(27) "1050%s.%s"
60 string(13) "%s"
61 string(23) "%s.%s"
62 string(13) "%s"
65 string(24) "1%s.%s"
[all …]
/PHP-7.4/ext/pcre/tests/
H A D004.phpt6 …ed|struct)\s+)?\w+)(?:\s*(\*+)\s+|\s+(\**))(\w+(?:\[\s*\w*\s*\])?)\s*(?:(=)[^,;]+)?((?:\s*,\s*\**\
9 var_dump(preg_match_all('/(?:\([^)]+\))?(&?)([\w>.()-]+(?:\[\w+\])?)\s*,?((?:\)*\s*=)?)/S', '&a, b,…
12 …/zend_parse_parameters(?:_ex\s*\([^,]+,[^,]+|\s*\([^,]+),\s*"([^"]*)"\s*,\s*([^{;]*)/S', 'zend_par…
15 …r_dump(preg_split('/PHP_(?:NAMED_)?(?:FUNCTION|METHOD)\s*\((\w+(?:,\s*\w+)?)\)/S', "PHP_FUNCTION(s
98 string(46) "zend_parse_parameters( 0, "addd|s/", a, b, &c)"
105 string(7) "addd|s/"
129 string(13) "s, preg_match"
/PHP-7.4/ext/filter/tests/
H A D048.phpt7 function hex_inc($s) {
8 $len = strlen($s);
11 if ($s[$len] != 'f') {
12 if ($s[$len] == '9') {
13 $s[$len] = 'a';
15 $s[$len] = $s[$len] + 1;
17 return $s;
19 $s[$len] = '0';
21 return '1'.$s;
28 $s = hex_inc($s);
[all …]
H A D047.phpt7 function octal_inc($s) {
8 $len = strlen($s);
11 if ($s[$len] != '7') {
12 $s[$len] = $s[$len] + 1;
13 return $s;
15 $s[$len] = '0';
17 return '1'.$s;
21 $s = sprintf("%o", PHP_INT_MAX);
24 $s = octal_inc($s);
27 $s = sprintf("%o", ~0);
[all …]
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_class_mysqli_properties_no_conn.phpt31 printf("mysqli->affected_rows = '%s'/%s ('%s'/%s)\n",
36 printf("mysqli->client_info = '%s'/%s ('%s'/%s)\n",
41 printf("mysqli->client_version = '%s'/%s ('%s'/%s)\n",
46 printf("mysqli->errno = '%s'/%s ('%s'/%s)\n",
52 printf("mysqli->error = '%s'/%s ('%s'/%s)\n",
57 printf("mysqli->field_count = '%s'/%s ('%s'/%s)\n",
62 printf("mysqli->insert_id = '%s'/%s ('%s'/%s)\n",
67 printf("mysqli->sqlstate = '%s'/%s ('%s'/%s)\n",
72 printf("mysqli->host_info = '%s'/%s ('%s'/%s)\n",
78 printf("mysqli->info = '%s'/%s ('%s'/%s)\n",
[all …]
/PHP-7.4/ext/reflection/tests/
H A D026.phpt22 timelib version => %s
23 "Olson" Timezone Database Version => %s
24 Timezone Database => %s
25 Default timezone => %s
27 Directive => %s => %s
28 date.timezone => %s => %s
29 date.default_latitude => %s => %s
30 date.default_longitude => %s => %s
31 date.sunset_zenith => %s => %s
32 date.sunrise_zenith => %s => %s
/PHP-7.4/ext/hash/
H A Dhash_gost.c131 (s[1] & 0xffff) ^ (s[1] >> 16) ^ (s[2] << 16) ^ s[6] ^ (s[6] << 16) ^ \
134 (s[1] << 16) ^ (s[1] >> 16) ^ (s[2] << 16) ^ (s[2] >> 16) ^ \
135 (s[3] << 16) ^ s[6] ^ (s[6] << 16) ^ (s[6] >> 16) ^ (s[7] & 0xffff) ^ \
140 (s[3] << 16) ^ (s[3] >> 16) ^ (s[4] << 16) ^ (s[6] << 16) ^ \
141 (s[6] >> 16) ^(s[7] & 0xffff) ^ (s[7] << 16) ^ (s[7] >> 16); \
143 (s[1] & 0xffff) ^ s[2] ^ (s[2] >> 16) ^ (s[3] << 16) ^ (s[3] >> 16) ^ \
144 (s[4] << 16) ^ (s[4] >> 16) ^ (s[5] << 16) ^ (s[6] << 16) ^ \
146 u[6] = m[6] ^ s[0] ^ (s[1] >> 16) ^ (s[2] << 16) ^ s[3] ^ (s[3] >> 16) ^ \
147 (s[4] << 16) ^ (s[4] >> 16) ^ (s[5] << 16) ^ (s[5] >> 16) ^ s[6] ^ \
150 (s[1] << 16) ^ (s[2] >> 16) ^ (s[3] << 16) ^ s[4] ^ (s[4] >> 16) ^ \
[all …]
/PHP-7.4/ext/pdo/tests/
H A Dpdo_018.phpt209s:7:"BasePub";s:13:"DerivedPublic";s:7:"BasePro";s:16:"DerivdeProtected";s:10:"DerivedPub";s:6:"Pu…
211s:7:"BasePub";s:13:"DerivedPublic";s:7:"BasePro";s:16:"DerivdeProtected";s:10:"DerivedPub";s:6:"Pu…
217 …string(91) "a:3:{s:7:"BasePub";s:6:"Public";s:7:"BasePro";s:9:"Protected";s:7:"BasePri";s:7:"Priva…
219s:7:"BasePub";s:13:"DerivedPublic";s:7:"BasePro";s:16:"DerivdeProtected";s:10:"DerivedPub";s:6:"Pu…
221s:7:"BasePub";s:13:"DerivedPublic";s:7:"BasePro";s:16:"DerivdeProtected";s:10:"DerivedPub";s:6:"Pu…
234 …string(91) "a:3:{s:7:"BasePub";s:6:"Public";s:7:"BasePro";s:9:"Protected";s:7:"BasePri";s:7:"Priva…
241s:7:"BasePub";s:13:"DerivedPublic";s:7:"BasePro";s:16:"DerivdeProtected";s:10:"DerivedPub";s:6:"Pu…
248s:7:"BasePub";s:13:"DerivedPublic";s:7:"BasePro";s:16:"DerivdeProtected";s:10:"DerivedPub";s:6:"Pu…
252 TestBase::unserialize(a:3:{s:7:"BasePub";s:6:"Public";s:7:"BasePro";s:9:"Protected";s:7:"BasePri";s
254s:7:"BasePub";s:13:"DerivedPublic";s:7:"BasePro";s:16:"DerivdeProtected";s:10:"DerivedPub";s:6:"Pu…
[all …]
/PHP-7.4/ext/oci8/tests/
H A Dnum.phpt33 var_dump(ocirowcount($s));
35 var_dump(ocinumcols($s));
39 if (!oci_execute($s)) {
45 var_dump(ocirowcount($s));
47 var_dump(ocinumcols($s));
57 var_dump(ocinumcols($s));
70 var_dump(ocinumcols($s));
73 if (!oci_execute($s)) {
101 if (!oci_execute($s)) {
122 if (!oci_execute($s)) {
[all …]

Completed in 68 milliseconds

12345678910>>...153