X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fnormal%2FUtfNormalUtil.php;h=e8fec93665a9a229cfce47af3c51ae113b1f7053;hb=c7dbaa0f580cbd6fc8c5e3664e55d6bee1c29136;hp=06e0bb4d5f863d1a944bf6a413d2df55dbf52b2a;hpb=deb045264967726f01ba0dc53c5107fc279290e0;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/normal/UtfNormalUtil.php b/includes/normal/UtfNormalUtil.php index 06e0bb4d5f..e8fec93665 100644 --- a/includes/normal/UtfNormalUtil.php +++ b/includes/normal/UtfNormalUtil.php @@ -1,39 +1,37 @@ -# http://www.mediawiki.org/ -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License along -# with this program; if not, write to the Free Software Foundation, Inc., -# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -# http://www.gnu.org/copyleft/gpl.html - /** * Some of these functions are adapted from places in MediaWiki. * Should probably merge them for consistency. * - * @package UtfNormal - * @access public + * Copyright © 2004 Brion Vibber + * http://www.mediawiki.org/ + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * http://www.gnu.org/copyleft/gpl.html + * + * @file + * @ingroup UtfNormal */ -/** */ - /** * Return UTF-8 sequence for a given Unicode code point. * May die if fed out of range data. * - * @param int $codepoint - * @return string - * @access public + * @param $codepoint Integer: + * @return String + * @public */ function codepointToUtf8( $codepoint ) { if($codepoint < 0x80) return chr($codepoint); @@ -47,7 +45,8 @@ function codepointToUtf8( $codepoint ) { chr($codepoint >> 6 & 0x3f | 0x80) . chr($codepoint & 0x3f | 0x80); - die("Asked for code outside of range ($codepoint)\n"); + echo "Asked for code outside of range ($codepoint)\n"; + die( -1 ); } /** @@ -55,9 +54,9 @@ function codepointToUtf8( $codepoint ) { * Unicode code points and return a UTF-8 string composed of those * characters. Used by UTF-8 data generation and testing routines. * - * @param string $sequence - * @return string - * @access private + * @param $sequence String + * @return String + * @private */ function hexSequenceToUtf8( $sequence ) { $utf = ''; @@ -72,27 +71,29 @@ function hexSequenceToUtf8( $sequence ) { * Take a UTF-8 string and return a space-separated series of hex * numbers representing Unicode code points. For debugging. * - * @param string $str + * @param string $str UTF-8 string. * @return string - * @access private + * @private */ function utf8ToHexSequence( $str ) { - return rtrim( preg_replace( '/(.)/uSe', - 'sprintf("%04x ", utf8ToCodepoint("$1"))', - $str ) ); + $buf = ''; + foreach ( preg_split( '//u', $str, -1, PREG_SPLIT_NO_EMPTY ) as $cp ) { + $buf .= sprintf( '%04x ', utf8ToCodepoint( $cp ) ); + } + return rtrim( $buf ); } /** * Determine the Unicode codepoint of a single-character UTF-8 sequence. * Does not check for invalid input data. * - * @param string $char - * @return int - * @access public + * @param $char String + * @return Integer + * @public */ function utf8ToCodepoint( $char ) { # Find the length - $z = ord( $char{0} ); + $z = ord( $char[0] ); if ( $z & 0x80 ) { $length = 0; while ( $z & 0x80 ) { @@ -115,9 +116,9 @@ function utf8ToCodepoint( $char ) { $z >>= $length; # Add in the free bits from subsequent bytes - for ( $i=1; $i<$length; $i++ ) { + for ( $i=1; $i < $length; $i++ ) { $z <<= 6; - $z |= ord( $char{$i} ) & 0x3f; + $z |= ord( $char[$i] ) & 0x3f; } return $z; @@ -126,9 +127,9 @@ function utf8ToCodepoint( $char ) { /** * Escape a string for inclusion in a PHP single-quoted string literal. * - * @param string $string - * @return string - * @access public + * @param string $string string to be escaped. + * @return String: escaped string. + * @public */ function escapeSingleString( $string ) { return strtr( $string, @@ -137,5 +138,3 @@ function escapeSingleString( $string ) { '\'' => '\\\'' )); } - -?>