__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
declare(strict_types=1);
namespace OpenSpout\Reader;
use OpenSpout\Common\Exception\IOException;
/**
* @template T of SheetIteratorInterface
*/
interface ReaderInterface
{
/**
* Prepares the reader to read the given file. It also makes sure
* that the file exists and is readable.
*
* @param string $filePath Path of the file to be read
*
* @throws IOException
*/
public function open(string $filePath): void;
/**
* Returns an iterator to iterate over sheets.
*
* @return T
*
* @throws Exception\ReaderNotOpenedException If called before opening the reader
*/
public function getSheetIterator(): SheetIteratorInterface;
/**
* Closes the reader, preventing any additional reading.
*/
public function close(): void;
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| CSV | Folder | 0777 |
|
|
| Common | Folder | 0777 |
|
|
| Exception | Folder | 0777 |
|
|
| ODS | Folder | 0777 |
|
|
| Wrapper | Folder | 0777 |
|
|
| XLSX | Folder | 0777 |
|
|
| AbstractReader.php | File | 5.31 KB | 0777 |
|
| ReaderInterface.php | File | 829 B | 0777 |
|
| RowIteratorInterface.php | File | 233 B | 0777 |
|
| SheetInterface.php | File | 576 B | 0777 |
|
| SheetIteratorInterface.php | File | 297 B | 0777 |
|
| SheetWithVisibilityInterface.php | File | 312 B | 0777 |
|