| 12345678910111213141516171819202122232425 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- interface PHPExcel_Reader_IReader
- {
- /**
- * Can the current PHPExcel_Reader_IReader read the file?
- *
- * @param string $pFilename
- * @return boolean
- */
- public function canRead($pFilename);
- /**
- * Loads PHPExcel from file
- *
- * @param string $pFilename
- * @return PHPExcel
- * @throws PHPExcel_Reader_Exception
- */
- public function load($pFilename);
- }
|