Pop\Pdf\Parser\Font::calcByteLength PHP Метод

calcByteLength() защищенный Метод

Method to calculate byte length.
protected calcByteLength ( string $str ) : integer
$str string
Результат integer
    protected function calcByteLength($str)
    {
        $bytes = str_replace("\n", "", $str);
        return strlen($bytes);
    }