Home
last modified time | relevance | path

Searched refs:u (Results 251 – 275 of 328) sorted by last modified time

1...<<11121314

/PHP-7.2/tests/lang/string/
H A Dunicode_escape_empty.phpt6 var_dump("\u{}");
H A Dunicode_escape_incomplete.phpt6 var_dump("\u{blah");
H A Dunicode_escape_large_codepoint.phpt6 var_dump("\u{110000}"); // U+10FFFF + 1
H A Dunicode_escape_sign.phpt6 var_dump("\u{+1F602}");
H A Dunicode_escape_sign2.phpt6 var_dump("\u{-1F602}");
H A Dunicode_escape_surrogates.phpt9 var_dump(bin2hex("\u{D801}"));
10 var_dump(bin2hex("\u{DC00}"));
11 var_dump(bin2hex("\u{D801}\u{DC00}")); // CESU-8 encoding of U+10400
H A Dunicode_escape_whitespace.phpt6 var_dump("\u{1F602 }");
/PHP-7.2/tests/classes/
H A Dclass_example.phpt30 function test($u)
32 $u->display();
33 $t = $u;
/PHP-7.2/ext/tokenizer/tests/
H A Dparse_errors.phpt26 test_parse_error('<?php var_dump("\u{xyz}");');
27 test_parse_error('<?php var_dump("\u{ffffff}");');
44 T_CONSTANT_ENCAPSED_STRING ("\u{xyz}")
52 T_CONSTANT_ENCAPSED_STRING ("\u{ffffff}")
/PHP-7.2/ext/tidy/tests/
H A D012.phpt106 <b>Hi</b><i>Bye<u>Test</u></i>
174 string(21) "<i>Bye<u>Test</u></i>"
213 string(11) "<u>Test</u>"
215 string(1) "u"
317 string(21) "<i>Bye<u>Test</u></i>"
356 string(11) "<u>Test</u>"
358 string(1) "u"
417 string(11) "<u>Test</u>"
419 string(1) "u"
/PHP-7.2/ext/standard/tests/strings/
H A Dsprintf_f_2.phpt38 $u = -43951789;
46 var_dump(sprintf("%%u = '%u'", $n)); // unsigned integer representation of a positive integer
47 var_dump(sprintf("%%u = '%u'", $u)); // unsigned integer representation of a negative integer
55 var_dump(sprintf("%%+d = '%+d'", $u)); // sign specifier on a negative integer
99 string\(15\) \"%u = '43951789'\"
100 (string\(17\) \"%u = '4251015507'\"|string\(27\) \"%u = '18446744073665599827'\")
H A Dhtml_entity_decode_cp866.phpt136 foreach ($arr as $u => $v) {
137 $ent = sprintf("&#x%X;", $u);
H A Dhtml_entity_decode_iso8859-15.phpt104 foreach ($arr as $u => $v) {
105 $ent = sprintf("&#x%X;", $u);
H A Dhtml_entity_decode_iso8859-5.phpt104 foreach ($arr as $u => $v) {
105 $ent = sprintf("&#x%X;", $u);
H A Dhtml_entity_decode_koi8-r.phpt136 foreach ($arr as $u => $v) {
137 $ent = sprintf("&#x%X;", $u);
H A Dhtml_entity_decode_macroman.phpt140 foreach ($arr as $u => $v) {
141 $ent = sprintf("&#x%X;", $u);
H A Dhtml_entity_decode_win1251.phpt140 foreach ($arr as $u => $v) {
141 $ent = sprintf("&#x%X;", $u);
H A Dhtml_entity_decode_win1252.phpt60 foreach ($arr as $u => $v) {
61 $ent = sprintf("&#x%X;", $u);
H A Dbug47842.phpt13 sscanf("4294967295", '%u', $int);
18 sscanf("18446744073709551615", '%u', $int);
22 printf("printf 64-bit signed int '18446744073709551615' (2^64)-1 = %u\n", 18446744073709551615);
H A Dcrc32.phpt7 printf("%u\n", crc32($i));
H A Daddslashes_variation2.phpt33 "don't disturb u'r neighbours",
34 "don't disturb u'r neighbours''",
99 string(30) "don\'t disturb u\'r neighbours"
102 string(34) "don\'t disturb u\'r neighbours\'\'"
H A Dbug23894.phpt8 $test = sprintf("% 13u", $a);
H A Dbug26973.phpt10 printf("%+05u\n", 200);
11 printf("%+05u\n", -200);
17 printf("%05u\n", 200);
18 printf("%05u\n", -200);
/PHP-7.2/ext/standard/tests/serialize/
H A Dbug76300.phpt22 $u = unserialize($s);
23 print_r($u);
/PHP-7.2/ext/standard/tests/array/
H A Dbug24220.phpt58 string(1) "u"

Completed in 37 milliseconds

1...<<11121314