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


PHP HTMLPurifier_Encoder::unichr方法代码示例

本文整理汇总了PHP中HTMLPurifier_Encoder::unichr方法的典型用法代码示例。如果您正苦于以下问题:PHP HTMLPurifier_Encoder::unichr方法的具体用法?PHP HTMLPurifier_Encoder::unichr怎么用?PHP HTMLPurifier_Encoder::unichr使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在HTMLPurifier_Encoder的用法示例。


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

示例1: nonSpecialEntityCallback

 /**
  * Callback function for substituteNonSpecialEntities() that does the work.
  * 
  * @warning Though this is public in order to let the callback happen,
  *          calling it directly is not recommended.
  * @param $matches  PCRE matches array, with 0 the entire match, and
  *                  either index 1, 2 or 3 set with a hex value, dec value,
  *                  or string (respectively).
  * @returns Replacement string.
  */
 function nonSpecialEntityCallback($matches)
 {
     // replaces all but big five
     $entity = $matches[0];
     $is_num = @$matches[0][1] === '#';
     if ($is_num) {
         $is_hex = @$entity[2] === 'x';
         $code = $is_hex ? hexdec($matches[1]) : (int) $matches[2];
         // abort for special characters
         if (isset($this->_special_dec2str[$code])) {
             return $entity;
         }
         return HTMLPurifier_Encoder::unichr($code);
     } else {
         if (isset($this->_special_ent2dec[$matches[3]])) {
             return $entity;
         }
         if (!$this->_entity_lookup) {
             $this->_entity_lookup = HTMLPurifier_EntityLookup::instance();
         }
         if (isset($this->_entity_lookup->table[$matches[3]])) {
             return $this->_entity_lookup->table[$matches[3]];
         } else {
             return $entity;
         }
     }
 }
开发者ID:hasshy,项目名称:sahana-tw,代码行数:37,代码来源:EntityParser.php

示例2: cleanUTF8

 /**
  * Cleans a UTF-8 string for well-formedness and SGML validity
  * 
  * It will parse according to UTF-8 and return a valid UTF8 string, with
  * non-SGML codepoints excluded.
  * 
  * @note Just for reference, the non-SGML code points are 0 to 31 and
  *       127 to 159, inclusive.  However, we allow code points 9, 10
  *       and 13, which are the tab, line feed and carriage return
  *       respectively. 128 and above the code points map to multibyte
  *       UTF-8 representations.
  * 
  * @note Fallback code adapted from utf8ToUnicode by Henri Sivonen and
  *       hsivonen@iki.fi at <http://iki.fi/hsivonen/php-utf8/> under the
  *       LGPL license.  Notes on what changed are inside, but in general,
  *       the original code transformed UTF-8 text into an array of integer
  *       Unicode codepoints. Understandably, transforming that back to
  *       a string would be somewhat expensive, so the function was modded to
  *       directly operate on the string.  However, this discourages code
  *       reuse, and the logic enumerated here would be useful for any
  *       function that needs to be able to understand UTF-8 characters.
  *       As of right now, only smart lossless character encoding converters
  *       would need that, and I'm probably not going to implement them.
  *       Once again, PHP 6 should solve all our problems.
  */
 public static function cleanUTF8($str, $force_php = false)
 {
     static $non_sgml_chars = array();
     if (empty($non_sgml_chars)) {
         for ($i = 0; $i <= 31; $i++) {
             // non-SGML ASCII chars
             // save \r, \t and \n
             if ($i == 9 || $i == 13 || $i == 10) {
                 continue;
             }
             $non_sgml_chars[chr($i)] = '';
         }
         for ($i = 127; $i <= 159; $i++) {
             $non_sgml_chars[HTMLPurifier_Encoder::unichr($i)] = '';
         }
     }
     static $iconv = null;
     if ($iconv === null) {
         $iconv = function_exists('iconv');
     }
     if ($iconv && !$force_php) {
         // do the shortcut way
         $str = @iconv('UTF-8', 'UTF-8//IGNORE', $str);
         return strtr($str, $non_sgml_chars);
     }
     $mState = 0;
     // cached expected number of octets after the current octet
     // until the beginning of the next UTF8 character sequence
     $mUcs4 = 0;
     // cached Unicode character
     $mBytes = 1;
     // cached expected number of octets in the current sequence
     // original code involved an $out that was an array of Unicode
     // codepoints.  Instead of having to convert back into UTF-8, we've
     // decided to directly append valid UTF-8 characters onto a string
     // $out once they're done.  $char accumulates raw bytes, while $mUcs4
     // turns into the Unicode code point, so there's some redundancy.
     $out = '';
     $char = '';
     $len = strlen($str);
     for ($i = 0; $i < $len; $i++) {
         $in = ord($str[$i]);
         $char .= $str[$i];
         // append byte to char
         if (0 == $mState) {
             // When mState is zero we expect either a US-ASCII character
             // or a multi-octet sequence.
             if (0 == (0x80 & $in)) {
                 // US-ASCII, pass straight through.
                 if (($in <= 31 || $in == 127) && !($in == 9 || $in == 13 || $in == 10)) {
                     // control characters, remove
                 } else {
                     $out .= $char;
                 }
                 // reset
                 $char = '';
                 $mBytes = 1;
             } elseif (0xc0 == (0xe0 & $in)) {
                 // First octet of 2 octet sequence
                 $mUcs4 = $in;
                 $mUcs4 = ($mUcs4 & 0x1f) << 6;
                 $mState = 1;
                 $mBytes = 2;
             } elseif (0xe0 == (0xf0 & $in)) {
                 // First octet of 3 octet sequence
                 $mUcs4 = $in;
                 $mUcs4 = ($mUcs4 & 0xf) << 12;
                 $mState = 2;
                 $mBytes = 3;
             } elseif (0xf0 == (0xf8 & $in)) {
                 // First octet of 4 octet sequence
                 $mUcs4 = $in;
                 $mUcs4 = ($mUcs4 & 0x7) << 18;
                 $mState = 3;
                 $mBytes = 4;
//.........这里部分代码省略.........
开发者ID:BGCX067,项目名称:ezrpg-svn-to-git,代码行数:101,代码来源:Encoder.php

示例3: validate

 public function validate($string, $config, $context)
 {
     static $generic_names = array('serif' => true, 'sans-serif' => true, 'monospace' => true, 'fantasy' => true, 'cursive' => true);
     // assume that no font names contain commas in them
     $fonts = explode(',', $string);
     $final = '';
     foreach ($fonts as $font) {
         $font = trim($font);
         if ($font === '') {
             continue;
         }
         // match a generic name
         if (isset($generic_names[$font])) {
             $final .= $font . ', ';
             continue;
         }
         // match a quoted name
         if ($font[0] === '"' || $font[0] === "'") {
             $length = strlen($font);
             if ($length <= 2) {
                 continue;
             }
             $quote = $font[0];
             if ($font[$length - 1] !== $quote) {
                 continue;
             }
             $font = substr($font, 1, $length - 2);
             $new_font = '';
             for ($i = 0, $c = strlen($font); $i < $c; $i++) {
                 if ($font[$i] === '\\') {
                     $i++;
                     if ($i >= $c) {
                         $new_font .= '\\';
                         break;
                     }
                     if (ctype_xdigit($font[$i])) {
                         $code = $font[$i];
                         for ($a = 1, $i++; $i < $c && $a < 6; $i++, $a++) {
                             if (!ctype_xdigit($font[$i])) {
                                 break;
                             }
                             $code .= $font[$i];
                         }
                         // We have to be extremely careful when adding
                         // new characters, to make sure we're not breaking
                         // the encoding.
                         $char = HTMLPurifier_Encoder::unichr(hexdec($code));
                         if (HTMLPurifier_Encoder::cleanUTF8($char) === '') {
                             continue;
                         }
                         $new_font .= $char;
                         if ($i < $c && trim($font[$i]) !== '') {
                             $i--;
                         }
                         continue;
                     }
                     if ($font[$i] === "\n") {
                         continue;
                     }
                 }
                 $new_font .= $font[$i];
             }
             $font = $new_font;
         }
         // $font is a pure representation of the font name
         if (ctype_alnum($font) && $font !== '') {
             // very simple font, allow it in unharmed
             $final .= $font . ', ';
             continue;
         }
         // complicated font, requires quoting
         // armor single quotes and new lines
         $font = str_replace("\\", "\\\\", $font);
         $font = str_replace("'", "\\'", $font);
         $final .= "'{$font}', ";
     }
     $final = rtrim($final, ', ');
     if ($final === '') {
         return false;
     }
     return $final;
 }
开发者ID:BackupTheBerlios,项目名称:oos-svn,代码行数:82,代码来源:HTMLPurifier.standalone.php

示例4: expandCSSEscape

 /**
  * Parses a possibly escaped CSS string and returns the "pure" 
  * version of it.
  */
 protected function expandCSSEscape($string)
 {
     // flexibly parse it
     $ret = '';
     for ($i = 0, $c = strlen($string); $i < $c; $i++) {
         if ($string[$i] === '\\') {
             $i++;
             if ($i >= $c) {
                 $ret .= '\\';
                 break;
             }
             if (ctype_xdigit($string[$i])) {
                 $code = $string[$i];
                 for ($a = 1, $i++; $i < $c && $a < 6; $i++, $a++) {
                     if (!ctype_xdigit($string[$i])) {
                         break;
                     }
                     $code .= $string[$i];
                 }
                 // We have to be extremely careful when adding
                 // new characters, to make sure we're not breaking
                 // the encoding.
                 $char = HTMLPurifier_Encoder::unichr(hexdec($code));
                 if (HTMLPurifier_Encoder::cleanUTF8($char) === '') {
                     continue;
                 }
                 $ret .= $char;
                 if ($i < $c && trim($string[$i]) !== '') {
                     $i--;
                 }
                 continue;
             }
             if ($string[$i] === "\n") {
                 continue;
             }
         }
         $ret .= $string[$i];
     }
     return $ret;
 }
开发者ID:ConnorChristie,项目名称:GrabViews,代码行数:44,代码来源:AttrDef.php


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