unicode_encode

(PHP 5 CVS only)

unicode_encode -- Takes a unicode string and converts it to a string in the specified encoding

说明

string unicode_encode ( unicode input, string encoding )

警告

本函数暂无文档,仅有参数列表。

参数

input

Its description

encoding

Its description

返回值

What the function returns, first on success, then on failure.

范例

例子 1. A unicode_encode() example

Any text that describes the purpose of t

<?php
if ($anexample === true) {
    echo
'Use the PEAR Coding Standards';
}
?>

上例将输出:

Use the PEAR Coding Standards

参见

unicode_decode()


add a note add a note User Contributed Notes
shidapu at mail dot ru
25-Jul-2006 07:10
convert unicode string to any chatacter set

<?
  
function unicode_convert($str, $out_encoding)
   {
      
$ret = '';
       for(
$i=0; $i < strlen($str) / 2; $i++)
       {
          
$dec = ord($str[$i*2])+256*ord($str[$i*2+1]);
           if (
$dec < 128)
           {
              
$utf = chr($dec);
           }
           elseif (
$dec < 2048)
           {
              
$utf = chr(192 + (($dec - ($dec % 64)) / 64));
              
$utf .= chr(128 + ($dec % 64));
           }
           else
           {
              
$utf = chr(224 + (($dec - ($dec % 4096)) / 4096));
              
$utf .= chr(128 + ((($dec % 4096) - ($dec % 64)) / 64));
              
$utf .= chr(128 + ($dec % 64));
           }
          
$ret .= $utf;
       }
      
$ret = iconv('utf-8', $out_encoding, $ret);
       return
$ret;
   }
?>
Hugo Dworak (post at o2 dot pl)
23-Nov-2005 10:54
As for an example of the usage of the function unicode_encode:

<?php
  header
('Content-Type: text/plain; charset=ISO-8859-2');
 
$encoded = unicode_encode ('\u0150\u0179', 'ISO-8859-2');
  echo
'Unicode semantics: ', ini_get ('unicode_semantics'), PHP_EOL, 'The string itself: ';
 
printf ($encoded . PHP_EOL, '%s');
  echo
'The length of the string: ', strlen ($encoded);
?>

The above example will output (please note that there will be characters instead of entities in the output):

Unicode semantics: 1
The string itself: &#336;&#377;
The length of the string: 2