mirror of
https://github.com/php/php-src.git
synced 2026-04-12 18:43:37 +02:00
This patch adds missing newlines, trims multiple redundant final newlines into a single one, and trims redundant leading newlines in all *.phpt sections. According to POSIX, a line is a sequence of zero or more non-' <newline>' characters plus a terminating '<newline>' character. [1] Files should normally have at least one final newline character. C89 [2] and later standards [3] mention a final newline: "A source file that is not empty shall end in a new-line character, which shall not be immediately preceded by a backslash character." Although it is not mandatory for all files to have a final newline fixed, a more consistent and homogeneous approach brings less of commit differences issues and a better development experience in certain text editors and IDEs. [1] http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_206 [2] https://port70.net/~nsz/c/c89/c89-draft.html#2.1.1.2 [3] https://port70.net/~nsz/c/c99/n1256.html#5.1.1.2
98 lines
2.1 KiB
PHP
98 lines
2.1 KiB
PHP
--TEST--
|
|
mb_strlen()
|
|
--SKIPIF--
|
|
<?php extension_loaded('mbstring') or die('skip mbstring not available'); ?>
|
|
--INI--
|
|
mbstring.func_overload=0
|
|
--FILE--
|
|
<?php
|
|
// TODO: Add more encodings
|
|
|
|
//$debug=true;
|
|
ini_set('include_path', dirname(__FILE__));
|
|
include_once('common.inc');
|
|
|
|
// restore detect_order to 'auto'
|
|
mb_detect_order('auto');
|
|
|
|
// Test string
|
|
$euc_jp = '0123この文字列は日本語です。EUC-JPを使っています。0123日本語は面倒臭い。';
|
|
$ascii = 'abcdefghijklmnopqrstuvwxyz;]=#0123456789';
|
|
|
|
// ASCII
|
|
echo "== ASCII ==\n";
|
|
print mb_strlen($ascii,'ASCII') . "\n";
|
|
print strlen($ascii) . "\n";
|
|
|
|
// EUC-JP
|
|
echo "== EUC-JP ==\n";
|
|
print mb_strlen($euc_jp,'EUC-JP') . "\n";
|
|
mb_internal_encoding('EUC-JP') or print("mb_internal_encoding() failed\n");
|
|
print strlen($euc_jp) . "\n";
|
|
|
|
// SJIS
|
|
echo "== SJIS ==\n";
|
|
$sjis = mb_convert_encoding($euc_jp, 'SJIS','EUC-JP');
|
|
print mb_strlen($sjis,'SJIS') . "\n";
|
|
mb_internal_encoding('SJIS') or print("mb_internal_encoding() failed\n");
|
|
print strlen($sjis) . "\n";
|
|
|
|
// JIS
|
|
// Note: either convert_encoding or strlen has problem
|
|
echo "== JIS ==\n";
|
|
$jis = mb_convert_encoding($euc_jp, 'JIS','EUC-JP');
|
|
print mb_strlen($jis,'JIS') . "\n";
|
|
mb_internal_encoding('JIS') or print("mb_internal_encoding() failed\n");
|
|
print strlen($jis) . "\n";
|
|
|
|
// UTF-8
|
|
// Note: either convert_encoding or strlen has problem
|
|
echo "== UTF-8 ==\n";
|
|
$utf8 = mb_convert_encoding($euc_jp, 'UTF-8','EUC-JP');
|
|
print mb_strlen($utf8,'UTF-8') . "\n";
|
|
mb_internal_encoding('UTF-8') or print("mb_internal_encoding() failed\n");
|
|
print strlen($utf8) . "\n";
|
|
|
|
|
|
// Wrong Parameters
|
|
echo "== WRONG PARAMETERS ==\n";
|
|
// Array
|
|
// Note: PHP Warning, strlen() expects parameter 1 to be string, array given
|
|
$r = strlen($t_ary);
|
|
echo $r."\n";
|
|
// Object
|
|
// Note: PHP Warning, strlen() expects parameter 1 to be string, object given
|
|
$r = strlen($t_obj);
|
|
echo $r."\n";
|
|
// Wrong encoding
|
|
mb_internal_encoding('EUC-JP');
|
|
$r = mb_strlen($euc_jp, 'BAD_NAME');
|
|
echo $r."\n";
|
|
|
|
|
|
|
|
|
|
?>
|
|
--EXPECT--
|
|
== ASCII ==
|
|
40
|
|
40
|
|
== EUC-JP ==
|
|
43
|
|
72
|
|
== SJIS ==
|
|
43
|
|
72
|
|
== JIS ==
|
|
43
|
|
90
|
|
== UTF-8 ==
|
|
43
|
|
101
|
|
== WRONG PARAMETERS ==
|
|
ERR: Warning
|
|
|
|
ERR: Warning
|
|
|
|
ERR: Warning
|