Neos\FluidAdaptor\ViewHelpers\Format\Base64DecodeViewHelper::render PHP 메소드

render() 공개 메소드

Converts all HTML entities to their applicable characters as needed using PHPs html_entity_decode() function.
또한 보기: http://www.php.net/html_entity_decode
public render ( string $value = null, boolean $keepQuotes = false, string $encoding = 'UTF-8' ) : string
$value string string to format
$keepQuotes boolean if TRUE, single and double quotes won't be replaced (sets ENT_NOQUOTES flag)
$encoding string
리턴 string the altered string
    public function render($value = null, $keepQuotes = false, $encoding = 'UTF-8')
    {
        return self::renderStatic(array('value' => $value, 'keepQuotes' => $keepQuotes, 'encoding' => $encoding), $this->buildRenderChildrenClosure(), $this->renderingContext);
    }
Base64DecodeViewHelper