| 1234567891011121314151617181920212223242526 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- /**
- * PHPExcel_Cell_IValueBinder
- *
- * @category PHPExcel
- * @package PHPExcel_Cell
- * @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel)
- */
- interface PHPExcel_Cell_IValueBinder
- {
- /**
- * Bind value to a cell
- *
- * @param PHPExcel_Cell $cell Cell to bind value to
- * @param mixed $value Value to bind in cell
- * @return boolean
- */
- public function bindValue(PHPExcel_Cell $cell, $value = null);
- }
|