SimpleExcel\Parser\XMLParser::loadFile PHP Метод

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

Load the XML file to be parsed
public loadFile ( string $file_path ) : boolean
$file_path string Path to XML file
Результат boolean
    public function loadFile($file_path)
    {
        if (!$this->isFileReady($file_path)) {
            return false;
        }
        return $this->parseDOM(simplexml_load_file($file_path));
    }