当前位置: 首页>>代码示例>>PHP>>正文


PHP _to_unicode函数代码示例

本文整理汇总了PHP中_to_unicode函数的典型用法代码示例。如果您正苦于以下问题:PHP _to_unicode函数的具体用法?PHP _to_unicode怎么用?PHP _to_unicode使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了_to_unicode函数的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: to_unicode

 /**
  * Takes an UTF-8 string and returns an array of ints representing the Unicode characters.
  * Astral planes are supported i.e. the ints in the output can be > 0xFFFF.
  * Occurrances of the BOM are ignored. Surrogates are not allowed.
  *
  * The Original Code is Mozilla Communicator client code.
  * The Initial Developer of the Original Code is Netscape Communications Corporation.
  * Portions created by the Initial Developer are Copyright (C) 1998 the Initial Developer.
  * Ported to PHP by Henri Sivonen <hsivonen@iki.fi>, see http://hsivonen.iki.fi/php-utf8/.
  * Slight modifications to fit with phputf8 library by Harry Fuecks <hfuecks@gmail.com>.
  *
  * @param   string   UTF-8 encoded string
  * @return  array    unicode code points
  * @return  boolean  FALSE if the string is invalid
  */
 public static function to_unicode($str)
 {
     if (!isset(self::$called[__FUNCTION__])) {
         require SYSPATH . 'core/utf8/' . __FUNCTION__ . EXT;
         // Function has been called
         self::$called[__FUNCTION__] = TRUE;
     }
     return _to_unicode($str);
 }
开发者ID:momoim,项目名称:momo-api,代码行数:24,代码来源:utf8.php

示例2: to_unicode

 /**
  * Takes an UTF-8 string and returns an array of ints representing the Unicode characters.
  * Astral planes are supported i.e. the ints in the output can be > 0xFFFF.
  * Occurrences of the BOM are ignored. Surrogates are not allowed.
  *
  *     $array = UTF8::to_unicode($str);
  *
  * The Original Code is Mozilla Communicator client code.
  * The Initial Developer of the Original Code is Netscape Communications Corporation.
  * Portions created by the Initial Developer are Copyright (C) 1998 the Initial Developer.
  * Ported to PHP by Henri Sivonen <hsivonen@iki.fi>, see <http://hsivonen.iki.fi/php-utf8/>
  * Slight modifications to fit with phputf8 library by Harry Fuecks <hfuecks@gmail.com>
  *
  * @param   string  UTF-8 encoded string
  * @return  array   unicode code points
  * @return  FALSE   if the string is invalid
  */
 public static function to_unicode($str)
 {
     if (!isset(self::$called[__FUNCTION__])) {
         require SYSPATH . 'utf8' . DIRECTORY_SEPARATOR . __FUNCTION__ . EXT;
         // Function has been called
         self::$called[__FUNCTION__] = TRUE;
     }
     return _to_unicode($str);
 }
开发者ID:gilyaev,项目名称:framework-bench,代码行数:26,代码来源:utf8.php

示例3: to_unicode

 public static function to_unicode($str)
 {
     if (!isset(UTF8::$called[__FUNCTION__])) {
         require JsonApiApplication::find_file("utf8", __FUNCTION__);
         // Function has been called
         UTF8::$called[__FUNCTION__] = TRUE;
     }
     return _to_unicode($str);
 }
开发者ID:benshez,项目名称:DreamWeddingCeremonies,代码行数:9,代码来源:UTF8.php

示例4: to_unicode

 /**
  * Takes an UTF-8 string and returns an array of ints representing the Unicode characters.
  * Astral planes are supported i.e. the ints in the output can be > 0xFFFF.
  * Occurrances of the BOM are ignored. Surrogates are not allowed.
  *
  * The Original Code is Mozilla Communicator client code.
  * The Initial Developer of the Original Code is Netscape Communications Corporation.
  * Portions created by the Initial Developer are Copyright (C) 1998 the Initial Developer.
  * Ported to PHP by Henri Sivonen <hsivonen@iki.fi>, see http://hsivonen.iki.fi/php-utf8/.
  * Slight modifications to fit with phputf8 library by Harry Fuecks <hfuecks@gmail.com>.
  *
  * @param   string   UTF-8 encoded string
  * @return  array    unicode code points
  * @return  boolean  FALSE if the string is invalid
  */
 public static function to_unicode($str)
 {
     require_once dirname(__FILE__) . '/' . __FUNCTION__ . '.php';
     return _to_unicode($str);
 }
开发者ID:abhinay100,项目名称:forma_app,代码行数:20,代码来源:lib.utf8.php

示例5: to_unicode

 /**
  * Takes an UTF-8 string and returns an array of ints representing the Unicode characters.
  * Astral planes are supported i.e. the ints in the output can be > 0xFFFF.
  * Occurrences of the BOM are ignored. Surrogates are not allowed.
  *
  *     $array = UTF8::to_unicode($str);
  *
  * The Original Code is Mozilla Communicator client code.
  * The Initial Developer of the Original Code is Netscape Communications Corporation.
  * Portions created by the Initial Developer are Copyright (C) 1998 the Initial Developer.
  * Ported to PHP by Henri Sivonen <hsivonen@iki.fi>, see <http://hsivonen.iki.fi/php-utf8/>
  * Slight modifications to fit with phputf8 library by Harry Fuecks <hfuecks@gmail.com>
  *
  * @param   string  $str    UTF-8 encoded string
  * @return  array   unicode code points
  * @return  FALSE   if the string is invalid
  */
 public static function to_unicode($str)
 {
     if (!isset(UTF8::$called[__FUNCTION__])) {
         require Kohana::find_file('utf8', __FUNCTION__);
         // Function has been called
         UTF8::$called[__FUNCTION__] = TRUE;
     }
     return _to_unicode($str);
 }
开发者ID:Chinese1904,项目名称:openclassifieds2,代码行数:26,代码来源:UTF8.php

示例6: to_unicode

 /**
  * Takes an UTF-8 string and returns an array of ints representing the Unicode characters
  *
  * Astral planes are supported i.e. the ints in the output can be > 0xFFFF.
  * Occurrences of the BOM are ignored. Surrogates are not allowed.
  *
  * Example:
  * ~~~
  * $array = UTF8::to_unicode($str);
  * ~~~
  *
  * The Original Code is Mozilla Communicator client code.
  * The Initial Developer of the Original Code is Netscape Communications Corporation.
  * Portions created by the Initial Developer are Copyright (C) 1998 the Initial Developer.
  * Ported to PHP by Henri Sivonen <hsivonen@iki.fi>, see <http://hsivonen.iki.fi/php-utf8/>
  * Slight modifications to fit with phputf8 library by Harry Fuecks <hfuecks@gmail.com>
  *
  * @param   string  $str  UTF-8 encoded string
  *
  * @return  array    mixed
  *
  * @uses    Kohana::find_file
  */
 public static function to_unicode($str)
 {
     UTF8::_load(__FUNCTION__);
     return _to_unicode($str);
 }
开发者ID:ultimateprogramer,项目名称:cms,代码行数:28,代码来源:utf8.php


注:本文中的_to_unicode函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。