IValueBinder.php 653 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * 重庆赤晓店信息科技有限公司
  4. * https://www.chixiaodian.com
  5. * Copyright (c) 2023 赤店商城 All rights reserved.
  6. */
  7. /**
  8. * PHPExcel_Cell_IValueBinder
  9. *
  10. * @category PHPExcel
  11. * @package PHPExcel_Cell
  12. * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel)
  13. */
  14. interface PHPExcel_Cell_IValueBinder
  15. {
  16. /**
  17. * Bind value to a cell
  18. *
  19. * @param PHPExcel_Cell $cell Cell to bind value to
  20. * @param mixed $value Value to bind in cell
  21. * @return boolean
  22. */
  23. public function bindValue(PHPExcel_Cell $cell, $value = null);
  24. }