SrtParser\srtFileEntry::getText PHP Метод

getText() публичный Метод

Returns the text of the entry
public getText ( boolean $stripTags = false, boolean $stripBasic = false, array $replacements = [] ) : string
$stripTags boolean
$stripBasic boolean
$replacements array
Результат string
    public function getText($stripTags = false, $stripBasic = false, $replacements = array())
    {
        if ($stripTags) {
            $this->stripTags($stripBasic, $replacements);
            return $this->noTagText;
        } else {
            return $this->text;
        }
    }