Searched refs:sjis (Results 1 – 12 of 12) sorted by relevance
/php-src/ext/mysqli/tests/ |
H A D | mysqli_real_escape_string_sjis.phpt | 2 mysqli_real_escape_string() - sjis 9 if (!mysqli_set_charset($link, 'sjis')) 10 die(sprintf("skip Cannot set charset 'sjis'")); 16 var_dump(mysqli_set_charset($link, "sjis"));
|
H A D | bug54674.phpt | 23 $link->set_charset('sjis');
|
/php-src/ext/mbstring/tests/ |
H A D | sjis2004_encoding.phpt | 25 $sjis = ($bytes < 256) ? chr($bytes) : pack('n', $bytes); 27 $validChars[$sjis] = pack('NN', $codepoint1, $codepoint2); 34 $validChars[$sjis] = pack('N', $codepoint1); 36 $fromUnicode[pack('n', $codepoint1)] = $sjis;
|
H A D | mb_strlen.phpt | 29 $sjis = mb_convert_encoding($euc_jp, 'SJIS','EUC-JP'); 30 print mb_strlen($sjis,'SJIS') . "\n"; 32 print strlen($sjis) . "\n";
|
H A D | mb_substr.phpt | 13 $sjis = mb_convert_encoding('日本語テキストです。0123456789。', 'SJIS', 'UTF-8'); 38 print "1: " . bin2hex(mb_substr($sjis, 0, 3, 'SJIS')) . "\n"; 39 print "2: " . bin2hex(mb_substr($sjis, -1, null, 'SJIS')) . "\n"; 40 print "3: " . bin2hex(mb_substr($sjis, -5, 3, 'SJIS')) . "\n"; 41 print "4: " . bin2hex(mb_substr($sjis, 1, null, 'SJIS')) . "\n"; 42 print "5:" . bin2hex(mb_substr($sjis, 10, 0, 'SJIS')) . "\n";
|
H A D | mb_convert_variables.phpt | 16 $sjis = base64_decode('k/qWe4zqg2WDTINYg2eCxYK3gUIwMTIzNIJUglWCVoJXgliBQg=='); 24 $s = $sjis; 76 global $sjis, $jis, $euc_jp; 92 global $sjis, $jis, $euc_jp;
|
H A D | mb_preferred_mime_name.phpt | 9 $str = mb_preferred_mime_name('sjis-win');
|
H A D | mb_convert_encoding.phpt | 12 $sjis = base64_decode('k/qWe4zqg2WDTINYg2eCxYK3gUIwMTIzNIJUglWCVoJXgliBQg=='); 18 $s = bin2hex(mb_convert_encoding($sjis, 'EUC-JP', 'SJIS'));
|
H A D | sjis_mobile_encodings.phpt | 216 $sjis = chr($hiBits + 0x81); 218 $sjis = chr($hiBits - 31 + 0xE0); 222 return $sjis . chr($ten + 0x40); 224 return $sjis . chr($ten - 63 + 0x80); 226 return $sjis . chr($ten + 0x9F); 232 $sjis = shiftJISEncode($ku, $ten); 233 if (isset($sbEmoji[$sjis])) { 235 $unicode = $softbank[$sjis];
|
H A D | mb_detect_encoding.phpt | 10 $sjis = base64_decode('k/qWe4zqg2WDTINYg2eCxYK3gUIwMTIzNIJUglWCVoJXgliBQg=='); 35 print("SJIS: " . mb_detect_encoding($sjis, 'SJIS', true) . "\n"); 50 print("SJIS: " . mb_detect_encoding($sjis, $a) . "\n"); 115 print("SJIS: " . mb_detect_encoding($sjis) . "\n");
|
/php-src/ext/standard/tests/strings/ |
H A D | get_html_translation_table_basic9.phpt | 2 Test get_html_translation_table() function : basic functionality - HTML5 /sjis
|
/php-src/ext/mysqlnd/ |
H A D | mysqlnd_charset.c | 399 static unsigned int mysqlnd_mbcharlen_sjis(const unsigned int sjis) in mysqlnd_mbcharlen_sjis() argument 401 return (valid_sjis_head((zend_uchar)sjis)) ? 2 : 1; in mysqlnd_mbcharlen_sjis()
|
Completed in 20 milliseconds