protected property Twig_Test_EscapingTest::$htmlSpecialChars

All character encodings supported by htmlspecialchars()

File

drupal/core/vendor/twig/twig/test/Twig/Tests/escapingTest.php, line 15

Class

Twig_Test_EscapingTest
This class is adapted from code coming from Zend Framework.

Code

protected $htmlSpecialChars = array(
  '\'' => ''',
  '"' => '"',
  '<' => '&lt;',
  '>' => '&gt;',
  '&' => '&amp;',
);