123456789101112131415161718192021 |
- <?php
- /**
- * Created by PhpStorm.
- * User: phperstar
- * Date: 2020/8/11
- * Time: 6:44 PM
- */
- namespace Util\PHPExcel\Reader;
- interface IReadFilter
- {
- /**
- * Should this cell be read?
- *
- * @param $column Column address (as a string value like "A", or "IV")
- * @param $row Row number
- * @param $worksheetName Optional worksheet name
- * @return boolean
- */
- public function readCell($column, $row, $worksheetName = '');
- }
|