Spout can now read ODS files. It's on par with the XLSX reader. The only difference is that the row iterator cannot be rewound. It supports the different output formats from LibreOffice and Excel, skipping extra rows/cells if needed.
13 lines
201 B
PHP
13 lines
201 B
PHP
<?php
|
|
|
|
namespace Box\Spout\Reader\Exception;
|
|
|
|
/**
|
|
* Class IteratorNotRewindableException
|
|
*
|
|
* @package Box\Spout\Reader\Exception
|
|
*/
|
|
class IteratorNotRewindableException extends ReaderException
|
|
{
|
|
}
|