Captioning\Cue::getText PHP Method

getText() public method

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

Usage Example

コード例 #1
0
ファイル: SubripCue.php プロジェクト: nik0s100/captioning
 public function getText($_stripTags = false, $_stripBasic = false, $_replacements = array())
 {
     parent::getText();
     if ($_stripTags) {
         return $this->getStrippedText($_stripBasic, $_replacements);
     }
     return $this->text;
 }