Latte\MacroTokens::fetchWord PHP 메소드

fetchWord() 공개 메소드

Reads single token (optionally delimited by comma) from string.
public fetchWord ( ) : string
리턴 string
    public function fetchWord()
    {
        $words = $this->fetchWords();
        return $words ? implode(':', $words) : FALSE;
    }