yii\helpers\BaseHtmlPurifier - Yii2 类参考手册

Class yii\helpers\BaseHtmlPurifier

Inheritanceyii\helpers\BaseHtmlPurifier
Subclassesyii\helpers\HtmlPurifier
Available since version2.0

BaseHtmlPurifier provides concrete implementation for yii\helpers\HtmlPurifier.

Do not use BaseHtmlPurifier. Use yii\helpers\HtmlPurifier instead.

Public Methods

隐藏继承的方法 Hide inherited methods

方法 Method简介 Description定义在 Defined By
process() Passes markup through HTMLPurifier making it safe to output to end user. yii\helpers\BaseHtmlPurifier

Protected Methods

隐藏继承的方法 Hide inherited methods

方法 Method简介 Description定义在 Defined By
configure() Allow the extended HtmlPurifier class to set some default config options. yii\helpers\BaseHtmlPurifier

方法详情 Method Details

configure() protected static method (available since version 2.0.3)

Allow the extended HtmlPurifier class to set some default config options.

protected static void configure ( $config )
$config \HTMLPurifier_Config
process() public static method

Passes markup through HTMLPurifier making it safe to output to end user.

public static string process ( $content, $config null )
$content string

The HTML content to purify

$config array|Closure|null

The config to use for HtmlPurifier. If not specified or null the default config will be used. You can use an array or an anonymous function to provide configuration options:

  • An array will be passed to the HTMLPurifier_Config::create() method.
  • An anonymous function will be called after the config was created. The signature should be: function($config) where $config will be an instance of HTMLPurifier_Config.

    Here is a usage example of such a function:

    // Allow the HTML5 data attribute `data-type` on `img` elements.
    $content = HtmlPurifier::process($content, function ($config) {
      $config->getHTMLDefinition(true)
             ->addAttribute('img', 'data-type', 'Text');
    });
    
return string

The purified HTML content.