當前位置: 首頁>>代碼示例>>PHP>>正文


PHP MyTextSanitizer::undoHtmlSpecialChars方法代碼示例

本文整理匯總了PHP中MyTextSanitizer::undoHtmlSpecialChars方法的典型用法代碼示例。如果您正苦於以下問題:PHP MyTextSanitizer::undoHtmlSpecialChars方法的具體用法?PHP MyTextSanitizer::undoHtmlSpecialChars怎麽用?PHP MyTextSanitizer::undoHtmlSpecialChars使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在MyTextSanitizer的用法示例。


在下文中一共展示了MyTextSanitizer::undoHtmlSpecialChars方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: purifyText

 /**
  * @param string  $text
  * @param boolean $keyword
  *
  * @return string
  */
 public function purifyText($text, $keyword = false)
 {
     $text = str_replace(' ', ' ', $text);
     $text = str_replace('<br />', ' ', $text);
     $text = strip_tags($text);
     $text = html_entity_decode($text);
     $text = $this->_myts->undoHtmlSpecialChars($text);
     $text = str_replace(')', ' ', $text);
     $text = str_replace('(', ' ', $text);
     $text = str_replace(':', ' ', $text);
     $text = str_replace('&euro', ' euro ', $text);
     $text = str_replace('&hellip', '...', $text);
     $text = str_replace('&rsquo', ' ', $text);
     $text = str_replace('!', ' ', $text);
     $text = str_replace('?', ' ', $text);
     $text = str_replace('"', ' ', $text);
     $text = str_replace('-', ' ', $text);
     $text = str_replace('\\n', ' ', $text);
     if ($keyword) {
         $text = str_replace('.', ' ', $text);
         $text = str_replace(',', ' ', $text);
         $text = str_replace('\'', ' ', $text);
     }
     $text = str_replace(';', ' ', $text);
     return $text;
 }
開發者ID:redmexico,項目名稱:XoopsCore,代碼行數:32,代碼來源:metagen.php

示例2: purifyText

 /**
  * @param      $text
  * @param bool $keyword
  *
  * @return mixed
  */
 public function purifyText($text, $keyword = false)
 {
     //        $text = str_replace(['&nbsp;', ' '], ['<br />', ' '], $text); //for php 5.4
     $text = str_replace('&nbsp;', ' ', $text);
     $text = str_replace('<br />', ' ', $text);
     $text = strip_tags($text);
     $text = html_entity_decode($text);
     $text = $this->myts->undoHtmlSpecialChars($text);
     $text = str_replace(')', ' ', $text);
     $text = str_replace('(', ' ', $text);
     $text = str_replace(':', ' ', $text);
     $text = str_replace('&euro', ' euro ', $text);
     $text = str_replace('&hellip', '...', $text);
     $text = str_replace('&rsquo', ' ', $text);
     $text = str_replace('!', ' ', $text);
     $text = str_replace('?', ' ', $text);
     $text = str_replace('"', ' ', $text);
     $text = str_replace('-', ' ', $text);
     $text = str_replace('\\n', ' ', $text);
     //        $text = str_replace([')','(',':','&euro','&hellip','&rsquo','!','?','"','-','\n'], [' ' , ' ',  ' ',  ' euro ',  '...',  ' ', ' ', ' ',  ' ', ' ',  ' '], $text); //for PHP 5.4
     if ($keyword) {
         $text = str_replace('.', ' ', $text);
         $text = str_replace(',', ' ', $text);
         $text = str_replace('\'', ' ', $text);
         //            $text = str_replace(['.', ' '], [',', ' '], ['\'', ' '], $text); //for PHP 5.4
     }
     $text = str_replace(';', ' ', $text);
     return $text;
 }
開發者ID:trabisdementia,項目名稱:publisher,代碼行數:35,代碼來源:metagen.php

示例3: load

 /**
  * @param MyTextSanitizer $ts
  * @param string $source
  * @param string $language
  * @return bool|mixed|string
  */
 public function load(MyTextSanitizer &$ts, $source, $language)
 {
     $config = parent::loadConfig(__DIR__);
     if (empty($config['highlight'])) {
         return "<pre>{$source}</pre>";
     }
     $source = $ts->undoHtmlSpecialChars($source);
     $source = stripslashes($source);
     if ($config['highlight'] == 'geshi') {
         $language = str_replace('=', '', $language);
         $language = $language ? $language : $config['language'];
         $language = strtolower($language);
         if ($source2 = MytsSyntaxhighlight::geshi($source, $language)) {
             return $source2;
         }
     }
     $source = MytsSyntaxhighlight::php($source);
     return $source;
 }
開發者ID:redmexico,項目名稱:XoopsCore,代碼行數:25,代碼來源:syntaxhighlight.php


注:本文中的MyTextSanitizer::undoHtmlSpecialChars方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。