Akeneo\Component\SpreadsheetParser\Xlsx\Relationships::getSharedStringsPath PHP 메소드

getSharedStringsPath() 공개 메소드

Returns the path of the shared strings file inside the xlsx file
public getSharedStringsPath ( ) : string
리턴 string
    public function getSharedStringsPath()
    {
        return $this->sharedStringPath;
    }

Usage Example

예제 #1
0
 /**
  * @return SharedStrings
  */
 protected function getSharedStrings()
 {
     if (!$this->sharedStrings) {
         $path = $this->archive->extract($this->relationships->getSharedStringsPath());
         $this->sharedStrings = $this->sharedStringsLoader->open($path);
     }
     return $this->sharedStrings;
 }