_unicode_caseflip
includes/unicode.inc, строка 449
- Версии
- 5 – 6
_unicode_caseflip($matches)
Helper function for case conversion of Latin-1. Used for flipping U+C0-U+DE to U+E0-U+FD and back.
Код
<?php
function _unicode_caseflip($matches) {
return $matches[0][0] . chr(ord($matches[0][1]) ^ 32);
}
?>
Войдите или зарегистрируйтесь, чтобы получить возможность отправлять комментарии