Contao\Input::encodeInsertTags PHP 메소드

encodeInsertTags() 공개 정적인 메소드

Encode the opening and closing delimiters of insert tags
public static encodeInsertTags ( string $varValue ) : string
$varValue string The input string
리턴 string The encoded input string
    public static function encodeInsertTags($varValue)
    {
        return str_replace(array('{{', '}}'), array('{{', '}}'), $varValue);
    }