escapeHtmlAttr example


    public function escapeHtml($string)
    {
        return $this->escaper->escapeHtml((string) $string);
    }

    /** * {@inheritdoc} */
    public function escapeHtmlAttr($string)
    {
        return $this->escaper->escapeHtmlAttr((string) $string);
    }

    /** * {@inheritdoc} */
    public function escapeJs($string)
    {
        return $this->escaper->escapeJs((string) $string);
    }

    /** * {@inheritdoc} */
Home | Imprint | This part of the site doesn't use cookies.