PhpOffice\PhpPresentation\Reader\PowerPoint97::readRecordOfficeArtFPSPL PHP Метод

readRecordOfficeArtFPSPL() приватный Метод

The OfficeArtFPSPL record specifies the former hierarchical position of the containing object that is either a shape or a group of shapes.
private readRecordOfficeArtFPSPL ( string $stream, integer $pos )
$stream string
$pos integer
    private function readRecordOfficeArtFPSPL($stream, $pos)
    {
        $arrayReturn = array('length' => 0);
        $data = $this->loadRecordHeader($stream, $pos);
        if ($data['recVer'] == 0x0 && $data['recInstance'] == 0x0 && $data['recType'] == 0xf11d && $data['recLen'] == 0x4) {
            $arrayReturn['length'] += 8;
            $arrayReturn['length'] += $data['recLen'];
        }
        return $arrayReturn;
    }
PowerPoint97