123456789101112131415161718192021222324252627 |
- <?php
- /**
- * Created by PhpStorm.
- * User: phperstar
- * Date: 2020/8/10
- * Time: 4:28 PM
- */
- namespace Util\PHPExcel\Reader;
- interface 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
- */
- public function load($pFilename);
- }
|