php-src/ext/standard/tests/math/bug30695.phpt
Peter Kokot d679f02295 Sync leading and final newlines in *.phpt sections
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
2018-10-15 04:33:09 +02:00

54 lines
2.0 KiB
PHP

--TEST--
Bug #30695 (32 bit issues)
--FILE--
<?php
function toUTF8( $char_code )
{
switch ( $char_code )
{
case 0:
$char = chr( 0 );
case !($char_code & 0xffffff80): // 7 bit
$char = chr( $char_code );
break;
case !($char_code & 0xfffff800): // 11 bit
$char = ( chr(0xc0 | (($char_code >> 6) & 0x1f)) .
chr(0x80 | ($char_code & 0x3f)) );
break;
case !($char_code & 0xffff0000): // 16 bit
$char = ( chr(0xe0 | (($char_code >> 12) & 0x0f)) .
chr(0x80 | (($char_code >> 6) & 0x3f)) .
chr(0x80 | ($char_code & 0x3f)) );
break;
case !($char_code & 0xffe00000): // 21 bit
$char = ( chr(0xf0 | (($char_code >> 18) & 0x07)) .
chr(0x80 | (($char_code >> 12) & 0x3f)) .
chr(0x80 | (($char_code >> 6) & 0x3f)) .
chr(0x80 | ($char_code & 0x3f)) );
break;
case !($char_code & 0xfc000000): // 26 bit
$char = ( chr(0xf8 | (($char_code >> 24) & 0x03)) .
chr(0x80 | (($char_code >> 18) & 0x3f)) .
chr(0x80 | (($char_code >> 12) & 0x3f)) .
chr(0x80 | (($char_code >> 6) & 0x3f)) .
chr(0x80 | ($char_code & 0x3f)) );
default: // 31 bit
$char = ( chr(0xfc | (($char_code >> 30) & 0x01)) .
chr(0x80 | (($char_code >> 24) & 0x3f)) .
chr(0x80 | (($char_code >> 18) & 0x3f)) .
chr(0x80 | (($char_code >> 12) & 0x3f)) .
chr(0x80 | (($char_code >> 6) & 0x3f)) .
chr(0x80 | ($char_code & 0x3f)) );
}
return $char;
}
echo "\n", toUTF8(65), "\n", toUTF8(233), "\n", toUTF8(1252), "\n", toUTF8(20095), "\n";
?>
--EXPECT--
A
é
Ӥ
乿