Captioning\Cue::getText PHP 메소드

getText() 공개 메소드

public getText ( ) : string
리턴 string
    public function getText()
    {
        $this->text = implode($this->lineEnding, $this->textLines);
        return $this->text;
    }

Usage Example

예제 #1
0
 public function getText($_stripTags = false, $_stripBasic = false, $_replacements = array())
 {
     parent::getText();
     if ($_stripTags) {
         return $this->getStrippedText($_stripBasic, $_replacements);
     }
     return $this->text;
 }