当前位置: 首页>>代码示例>>PHP>>正文


PHP PHPExcel_Cell::getFormattedValue方法代码示例

本文整理汇总了PHP中PHPExcel_Cell::getFormattedValue方法的典型用法代码示例。如果您正苦于以下问题:PHP PHPExcel_Cell::getFormattedValue方法的具体用法?PHP PHPExcel_Cell::getFormattedValue怎么用?PHP PHPExcel_Cell::getFormattedValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在PHPExcel_Cell的用法示例。


在下文中一共展示了PHPExcel_Cell::getFormattedValue方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: convertCellData

 public static function convertCellData(\PHPExcel_Cell $cell)
 {
     $ret = array();
     $datatype = $cell->getDataType();
     if ($datatype === \excel2sql\Type::EXCEL_NUMERIC) {
         $format = $cell->getStyle()->getNumberFormat()->getFormatCode();
         if (array_key_exists($format, \excel2sql\Type::$numeric_convert_map)) {
             $format = \excel2sql\Type::$numeric_convert_map[$format];
         }
         $ret['type'] = \excel2sql\Type::$numeric_to_sql_map[$format];
         $ret['value'] = \PHPExcel_Style_NumberFormat::toFormattedString($cell->getValue(), $format);
         if ($format === \excel2sql\Type::EXCEL_DATE || $format === \excel2sql\Type::EXCEL_DATETIME || $format === \excel2sql\Type::EXCEL_TIME) {
             $ret['value'] = "'{$ret['value']}'";
         }
     } else {
         $ret['type'] = \excel2sql\Type::$excel_to_sql_map[$datatype];
         if ($ret['value'] = $cell->getFormattedValue()) {
             if ($datatype === \excel2sql\Type::EXCEL_STRING || $datatype === \excel2sql\Type::EXCEL_STRING2) {
                 $ret['value'] = "\"" . preg_replace("[\"]", "''", $ret['value']) . "\"";
             }
         } else {
             $ret['value'] = "null";
         }
     }
     return $ret;
 }
开发者ID:brandon-garcia,项目名称:statsdashboard,代码行数:26,代码来源:SqlConvert.php

示例2: getStrToUpper

 function getStrToUpper(PHPExcel_Cell $cell)
 {
     $b = false;
     try {
         $b = mb_strtoupper(trim($cell->getFormattedValue()));
     } catch (Exception $e) {
         $b = false;
     }
     return $b;
 }
开发者ID:ViktorKITP,项目名称:schedule,代码行数:10,代码来源:finder.php


注:本文中的PHPExcel_Cell::getFormattedValue方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。