IReader.php 612 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * 重庆赤晓店信息科技有限公司
  4. * https://www.chixiaodian.com
  5. * Copyright (c) 2023 赤店商城 All rights reserved.
  6. */
  7. interface PHPExcel_Reader_IReader
  8. {
  9. /**
  10. * Can the current PHPExcel_Reader_IReader read the file?
  11. *
  12. * @param string $pFilename
  13. * @return boolean
  14. */
  15. public function canRead($pFilename);
  16. /**
  17. * Loads PHPExcel from file
  18. *
  19. * @param string $pFilename
  20. * @return PHPExcel
  21. * @throws PHPExcel_Reader_Exception
  22. */
  23. public function load($pFilename);
  24. }