1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-03 13:05:44 +02:00

- added a comment on normalization

git-svn-id: file:///svn/phpbb/trunk@8037 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Nils Adermann 2007-08-16 13:50:20 +00:00
parent da55886024
commit 0a7abb6b37

View File

@ -1597,7 +1597,9 @@ K??se
<blockquote><pre>
$_REQUEST['multibyte_string'] = 'K&#228;se';
// normalize multibyte strings
echo utf8_normalize_nfc(request_var('multibyte_string', '', true));
// ASCII strings do not need to be normalized
echo request_var('multibyte_string', '');
</pre></blockquote>