또한 보기: http://www.php.net/manual/function.htmlentities.php = Examples = {text} Text with & " ' < > * replaced by HTML entities (htmlentities applied). {text -> f:format.htmlentities(encoding: 'ISO-8859-1')} Text with & " ' < > * replaced by HTML entities (htmlentities applied).
상속: extends Neos\FluidAdaptor\Core\ViewHelper\AbstractViewHelper
 /**
  * @test
  */
 public function renderDoesNotModifySourceIfItIsAnObjectThatCantBeConvertedToAString()
 {
     $user = new UserWithoutToString('Xaver <b>Cross-Site</b>');
     $actualResult = $this->viewHelper->render($user);
     $this->assertSame($user, $actualResult);
 }