mirror of
https://github.com/retailcrm/PHPExcel.git
synced 2024-11-26 15:26:03 +03:00
Improved canRead test for OOCalc files
This commit is contained in:
parent
78b7019247
commit
15ccc845da
@ -198,14 +198,20 @@ class PHPExcel_Reader_OOCalc implements PHPExcel_Reader_IReader
|
|||||||
$zip = new ZipArchive;
|
$zip = new ZipArchive;
|
||||||
if ($zip->open($pFilename) === true) {
|
if ($zip->open($pFilename) === true) {
|
||||||
// check if it is an OOXML archive
|
// check if it is an OOXML archive
|
||||||
$mimeType = $zip->getFromName("mimetype");
|
$stat = $zip->statName('mimetype');
|
||||||
|
if ($stat && ($stat['size'] <= 255)) {
|
||||||
|
$mimeType = $zip->getFromName($stat['name']);
|
||||||
|
} else {
|
||||||
|
$zip->close();
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
$zip->close();
|
$zip->close();
|
||||||
|
|
||||||
return ($mimeType === 'application/vnd.oasis.opendocument.spreadsheet');
|
return ($mimeType === 'application/vnd.oasis.opendocument.spreadsheet');
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user