IWriter.php 406 B

12345678910111213141516
  1. <?php
  2. /**
  3. * 重庆赤晓店信息科技有限公司
  4. * https://www.chixiaodian.com
  5. * Copyright (c) 2023 赤店商城 All rights reserved.
  6. */
  7. interface PHPExcel_Writer_IWriter
  8. {
  9. /**
  10. * Save PHPExcel to file
  11. *
  12. * @param string $pFilename Name of the file to save
  13. * @throws PHPExcel_Writer_Exception
  14. */
  15. public function save($pFilename = null);
  16. }