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;
 }